]>
iEval git - gruntmaster-page.git/blob - lib/Gruntmaster/Page/Us.pm
1 package Gruntmaster
::Page
::Us
;
6 use Gruntmaster
::Page
::Base us
=> 'Users';
7 our @ISA = qw
/Gruntmaster::Page::Base/;
8 our $VERSION = '0.001';
10 use constant TEMPLATES
=> {
12 <ol><tmpl_loop users><li><a href="<tmpl_var id>.var"><tmpl_var name></a>
18 my ($self, $htc, $path, $lang) = @_;
20 $htc->param(users
=> [ sort { lc $a->{name
} cmp lc $b->{name
} }
21 map { {id
=> $_, name
=> user_name
} }
22 grep { user_name
=~ /\w/ } users
]);
This page took 0.042082 seconds and 4 git commands to generate.