Fixed a typo in the Macro_r_printable where an ending bold tag was dropped. Add some POD to Asset.pm talking about variables that are added when processTemplate is called. More ISA work in the Help system.
45 lines
1.4 KiB
Perl
45 lines
1.4 KiB
Perl
package WebGUI::Help::Asset_Dashboard;
|
|
|
|
our $HELP = {
|
|
'dashboard add/edit' => {
|
|
title => 'dashboard add/edit title',
|
|
body => 'dashboard add/edit body',
|
|
isa => [
|
|
{
|
|
namespace => "Asset_Wobject",
|
|
tag => "wobject add/edit"
|
|
},
|
|
],
|
|
fields => [
|
|
{
|
|
title => 'dashboard template field label',
|
|
description => 'dashboard template description',
|
|
namespace => 'Asset_Dashboard',
|
|
},
|
|
{
|
|
title => 'dashboard adminsGroupId field label',
|
|
description => 'dashboard adminsGroupId description',
|
|
namespace => 'Asset_Dashboard',
|
|
},
|
|
{
|
|
title => 'dashboard usersGroupId field label',
|
|
description => 'dashboard usersGroupId description',
|
|
namespace => 'Asset_Dashboard',
|
|
},
|
|
{
|
|
title => 'assets to hide',
|
|
description => 'assets to hide description',
|
|
namespace => 'Asset_Dashboard',
|
|
uiLevel => 9,
|
|
},
|
|
],
|
|
related => [
|
|
{
|
|
tag => 'shortcut add/edit',
|
|
namespace => 'Asset_Shortcut'
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
1;
|