webgui/lib/WebGUI/Help/Asset_Dashboard.pm
Colin Kuskie 0db2156374 Removed /x from ErrorHandler HTML reformatting since it doesn't use embedded whitespace or comments.
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.
2006-11-28 19:20:04 +00:00

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;