webgui/lib/WebGUI/Help/Asset_Wobject.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

121 lines
2.3 KiB
Perl

package WebGUI::Help::Asset_Wobject;
our $HELP = {
'wobjects using' => {
title => '671',
body => '626',
fields => [
],
related => [
{
tag => 'macros using',
namespace => 'Macros'
},
{
tag => 'style sheets using',
namespace => 'WebGUI'
},
{
tag => 'wobject add/edit',
namespace => 'Asset_Wobject'
},
{
tag => 'wobject delete',
namespace => 'Asset_Wobject'
}
]
},
'wobject add/edit' => {
title => '677',
body => '632',
isa => [
{
tag => 'asset fields',
namespace => 'Asset'
},
],
fields => [
{
title => '174',
description => '174 description',
namespace => 'Asset_Wobject',
uiLevel => 5,
},
{
title => '1073',
description => '1073 description',
namespace => 'Asset_Wobject',
},
{
title => '1079',
description => '1079 description',
namespace => 'Asset_Wobject',
},
{
title => '85',
description => '85 description',
namespace => 'Asset_Wobject',
},
],
related => [
{
tag => 'wobjects using',
namespace => 'Asset_Wobject'
}
]
},
'wobject delete' => {
title => '664',
body => '619',
fields => [
],
related => [
{
tag => 'wobjects using',
namespace => 'Asset_Wobject'
}
]
},
'wobject template' => {
title => '827',
body => '828',
fields => [
],
variables => [
{
'name' => 'title'
},
{
'name' => 'displayTitle'
},
{
'name' => 'description'
},
{
'name' => 'assetId'
},
{
'name' => 'isShortcut'
},
{
'name' => 'originalURL'
},
],
related => [
{
tag => 'pagination template variables',
namespace => 'WebGUI'
},
{
tag => 'template language',
namespace => 'Asset_Template'
},
]
},
};
1;