webgui/lib/WebGUI/Help/Macro_L_loginBox.pm
Colin Kuskie cffe4fbc7b Remove the "using macros" entry, and all references.
Pruning and altering Macro docs up to and including CanEditText.
2007-07-17 15:44:12 +00:00

74 lines
1.5 KiB
Perl

package WebGUI::Help::Macro_L_loginBox;
our $HELP = {
'login box' => {
title => 'login box title',
body => 'login box body',
isa => [
{
namespace => "Asset_Template",
tag => "template variables"
},
],
variables => [
{
'name' => 'user.isVisitor'
},
{
'name' => 'customText'
},
{
'name' => 'hello.label'
},
{
'name' => 'customText'
},
{
'name' => 'account.display.url'
},
{
'name' => 'logout.label'
},
{
'required' => 1,
'name' => 'form.header'
},
{
'name' => 'username.label'
},
{
'required' => 1,
'name' => 'username.form'
},
{
'name' => 'password.label'
},
{
'required' => 1,
'name' => 'password.form'
},
{
'required' => 1,
'name' => 'form.login'
},
{
'name' => 'account.create.url'
},
{
'name' => 'account.create.label'
},
{
'required' => 1,
'name' => 'form.footer'
}
],
fields => [
],
related => [
]
},
};
1;