Asset/Wobject/Layout.pm

This commit is contained in:
Colin Kuskie 2005-03-05 02:12:58 +00:00
parent 65f93c9c81
commit a3a335486a
2 changed files with 130 additions and 0 deletions

41
lib/WebGUI/Help/Layout.pm Normal file
View file

@ -0,0 +1,41 @@
package WebGUI::Help::Layout;
our $HELP = {
'layout add/edit' => {
title => 'layout add/edit title',
body => 'layout add/edit body',
related => [
{
tag => 'asset fields',
namespace => 'Asset'
},
{
tag => 'wobject add/edit',
namespace => 'Wobject'
},
{
tag => 'layout template',
namespace => 'Layout'
},
]
},
'layout template' => {
title => 'layout template title',
body => 'layout template body',
related => [
{
tag => 'layout add/edit',
namespace => 'Layout'
},
{
tag => 'template language',
namespace => 'Template'
},
]
},
};
1;