webgui/lib/WebGUI/Help/Asset_Article.pm
Colin Kuskie b4597e50e5 Implement multiple inheritance in Help, allowing variables, fields and related
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.
2006-05-31 04:16:40 +00:00

179 lines
4.4 KiB
Perl

package WebGUI::Help::Asset_Article;
our $HELP = {
'article add/edit' => {
title => '61',
body => '71',
fields => [
{
title => 'cache timeout',
namespace => 'Asset_Article',
description => 'cache timeout help',
uiLevel => 8,
},
{
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,
},
],
related => [
{
tag => 'article template',
namespace => 'Asset_Article'
},
{
tag => 'wobjects using',
namespace => 'Asset_Wobject'
},
{
tag => 'asset fields',
namespace => 'Asset'
},
],
},
'article template' => {
title => '72',
body => '73',
isa => [
{
namespace => "Asset_Template",
tag => "template variables"
},
{
namespace => "Asset",
tag => "asset template"
},
],
fields => [
],
variables => [
{
'name' => 'new.template'
},
{
'name' => 'description'
},
{
'name' => 'description.full'
},
{
'name' => 'description.first.100words'
},
{
'name' => 'description.first.75words'
},
{
'name' => 'description.first.50words'
},
{
'name' => 'description.first.25words'
},
{
'name' => 'description.first.10words'
},
{
'name' => 'description.first.paragraph'
},
{
'name' => 'description.first.2paragraphs'
},
{
'name' => 'description.first.sentence'
},
{
'name' => 'description.first.2sentences'
},
{
'name' => 'description.first.3sentences'
},
{
'name' => 'description.first.4sentences'
},
{
'name' => 'attachment.icon'
},
{
'name' => 'attachment.name'
},
{
'name' => 'attachment.url'
},
{
'name' => 'image.thumbnail'
},
{
'name' => 'image.url'
},
{
'name' => 'attachment_loop',
'variables' => [
{
'name' => 'filename'
},
{
'name' => 'url'
},
{
'name' => 'thumbnailUrl'
},
{
'name' => 'iconUrl'
},
{
'name' => 'isImage'
}
]
},
{
'name' => 'linkTitle'
},
{
'name' => 'linkURL'
},
{
'name' => 'post.label'
},
{
'name' => 'post.URL'
},
{
'name' => 'replies.count'
},
{
'name' => 'replies.label'
},
{
'name' => 'replies.url'
}
],
related => [
{
tag => 'article add/edit',
namespace => 'Asset_Article'
},
{
tag => 'pagination template variables',
namespace => 'WebGUI'
},
{
tag => 'wobject template',
namespace => 'Asset_Wobject'
}
]
},
};
1;