webgui/lib/WebGUI/Help/Asset_Article.pm
Colin Kuskie 659b164a42 Fix typo in Group.pm where www_manageUsersInGroup wasn't working.
Add a feature to the Help where the user's UI Level is checked
and only fields that he can see are displayed.  A URL is provided
to override the UI.

Article help is updated to work with UI level display.
2006-03-01 03:51:56 +00:00

69 lines
1.7 KiB
Perl

package WebGUI::Help::Asset_Article;
our $HELP = {
'article add/edit' => {
title => '61',
body => '71',
fields => [
{
title => '72',
description => 'article template description',
namespace => 'Asset_Article',
},
{
title => '8',
description => 'link url description',
namespace => 'Asset_Article',
uiLevel => 3,
},
{
title => '7',
description => 'link title description',
namespace => 'Asset_Article',
uiLevel => 3,
},
{
title => '10',
description => 'carriage return description',
namespace => 'Asset_Article',
uiLevel => 5,
},
],
related => [
{
tag => 'article template',
namespace => 'Asset_Article'
},
{
tag => 'wobjects using',
namespace => 'Wobject'
},
{
tag => 'asset fields',
namespace => 'Asset'
},
],
},
'article template' => {
title => '72',
body => '73',
fields => [
],
related => [
{
tag => 'article add/edit',
namespace => 'Asset_Article'
},
{
tag => 'pagination template variables',
namespace => 'WebGUI'
},
{
tag => 'wobject template',
namespace => 'Wobject'
}
]
},
};
1;