]> iEval git - gruntmaster-page.git/blob - lib/Gruntmaster/Page/Us.pm
Sort user list by name and exclude users with empty names
[gruntmaster-page.git] / lib / Gruntmaster / Page / Us.pm
1 package Gruntmaster::Page::Us;
2
3 use 5.014000;
4 use strict;
5 use warnings;
6 use Gruntmaster::Page::Base us => 'Users';
7 our @ISA = qw/Gruntmaster::Page::Base/;
8 our $VERSION = '0.001';
9
10 use constant TEMPLATES => {
11 en => <<'HTML',
12 <ol><tmpl_loop users><li><a href="<tmpl_var id>.var"><tmpl_var name></a>
13 </tmpl_loop></ol>
14 HTML
15 };
16
17 sub _generate{
18 my ($self, $htc, $path, $lang) = @_;
19
20 $htc->param(users => [ sort { lc $a->{name} cmp lc $b->{name} }
21 map { {id => $_, name => user_name} }
22 grep { user_name =~ /\w/ } users ]);
23 }
24
25 1
This page took 0.043041 seconds and 5 git commands to generate.