selectable templates for user profile view and edit

This commit is contained in:
Colin Kuskie 2008-06-13 05:07:12 +00:00
parent 0b2283d198
commit c7083c8177
6 changed files with 228 additions and 3 deletions

View file

@ -480,6 +480,22 @@ sub definition {
fieldType => 'HTMLArea',
label => $i18n->get( 'showMessageOnLoginBody label' ),
hoverHelp => $i18n->get( 'showMessageOnLoginBody description' ),
};
push @fields, {
tab => "user",
name => 'viewUserProfileTemplate',
fieldType => 'Template',
namespace => 'Operation/Profile/View',
label => $i18n->get( 'user profile view template' ),
hoverHelp => $i18n->get( 'user profile view template description' ),
};
push @fields, {
tab => "user",
name => 'editUserProfileTemplate',
fieldType => 'Template',
namespace => 'Operation/Profile/Edit',
label => $i18n->get( 'user profile edit template' ),
hoverHelp => $i18n->get( 'user profile edit template description' ),
};
# auth settings
my $options;