topics to be inherited from multiple entries. Operation/Help now also gives the help hash a default ISA array, to make downstream processing by tests and documentation compilers easier. Convert existing Help entries that already used ISA to have an array ref instead of a singular hash ref. Also update the Help skeleton to show the new syntax.
78 lines
1.5 KiB
Perl
78 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 => [
|
|
{
|
|
tag => 'macros using',
|
|
namespace => 'Macros'
|
|
},
|
|
]
|
|
},
|
|
|
|
};
|
|
|
|
1;
|