placed Asset/File/Image help into its own files

This commit is contained in:
Colin Kuskie 2005-02-25 00:01:06 +00:00
parent cadcac19ca
commit 0728c5375d
5 changed files with 79 additions and 67 deletions

View file

@ -53,21 +53,6 @@ our $HELP = {
]
},
'image add/edit' => {
title => 'image add/edit title',
body => 'image add/edit body',
related => [
{
tag => 'asset fields',
namespace => 'Asset'
},
{
tag => 'file add/edit',
namespace => 'Asset'
},
]
},
'metadata manage'=> {
title => 'content profiling',
body => 'metadata manage body',

22
lib/WebGUI/Help/Image.pm Normal file
View file

@ -0,0 +1,22 @@
package WebGUI::Help::Image;
our $HELP = {
'image add/edit' => {
title => 'image add/edit title',
body => 'image add/edit body',
related => [
{
tag => 'asset fields',
namespace => 'Asset'
},
{
tag => 'file add/edit',
namespace => 'File'
},
]
},
};
1;