From 8e2716f4aa28345cc3a09f84200bbcba9a8c5736 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Tue, 7 Apr 2009 09:34:58 -0700 Subject: [PATCH] Template variable help for view screen. --- lib/WebGUI/Help/Account_FriendManager.pm | 26 ++++++++++++++++ .../i18n/English/Account_FriendManager.pm | 30 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 lib/WebGUI/Help/Account_FriendManager.pm diff --git a/lib/WebGUI/Help/Account_FriendManager.pm b/lib/WebGUI/Help/Account_FriendManager.pm new file mode 100644 index 000000000..136fa518c --- /dev/null +++ b/lib/WebGUI/Help/Account_FriendManager.pm @@ -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 diff --git a/lib/WebGUI/i18n/English/Account_FriendManager.pm b/lib/WebGUI/i18n/English/Account_FriendManager.pm index 32ce9a895..4aba25a1c 100644 --- a/lib/WebGUI/i18n/English/Account_FriendManager.pm +++ b/lib/WebGUI/i18n/English/Account_FriendManager.pm @@ -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;