Created
October 29, 2011 13:25
-
-
Save sartak/1324440 to your computer and use it in GitHub Desktop.
local/html/Callbacks/Sartak/m/_elements/menu/MassageMenu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%ARGS> | |
$Links | |
</%ARGS> | |
<%ONCE> | |
use utf8; | |
</%ONCE> | |
<%INIT> | |
# after 新規チケット | |
splice @$Links, 2, 0, { | |
label => '日本語って新規チケット', | |
url => '/m/ticket/create?Queue=4', | |
}; | |
# drop links I don't ever use | |
@$Links = grep { | |
local $_ = $_->{label}; | |
!/Tickets I own/i && | |
!/Unowned tickets/i && | |
!/すべてのチケット/ | |
} @$Links; | |
</%INIT> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment