Skip to content

Instantly share code, notes, and snippets.

@sartak
Created October 29, 2011 13:25
Show Gist options
  • Save sartak/1324440 to your computer and use it in GitHub Desktop.
Save sartak/1324440 to your computer and use it in GitHub Desktop.
local/html/Callbacks/Sartak/m/_elements/menu/MassageMenu
<%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