Template variable help for view screen.

This commit is contained in:
Colin Kuskie 2009-04-07 09:34:58 -07:00
parent a67907308f
commit 8e2716f4aa
2 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,26 @@
package WebGUI::Help::Account_FriendManager;
use strict;
our $HELP = {
'view friend manager' => {
title => 'Friend Manager View Template',
body => '',
isa => [
],
fields => [ ],
variables => [
{ name => 'group_loop',
variables => [
{ name => 'groupId', },
{ name => 'groupName', },
]
},
],
related => [ ],
},
};
1;
#vim:ft=perl

View file

@ -48,6 +48,36 @@ our $I18N = {
lastUpdated => 0,
},
'remove friends' => {
message => q{Remove Friends},
lastUpdated => 0,
},
'add new friends' => {
message => q{Add New Friends},
lastUpdated => 0,
},
'Friend Manager View Template' => {
message => q{Friend Manager View Template},
lastUpdated => 0,
},
'group_loop' => {
message => q{A loop containing 1 entry for each group that is set to be managed.},
lastUpdated => 0,
},
'groupId' => {
message => q{The GUID of the group.},
lastUpdated => 0,
},
'groupName' => {
message => q{The name of the group.},
lastUpdated => 0,
},
};
1;