moved Asset/Snippet help into its own files

This commit is contained in:
Colin Kuskie 2005-02-25 03:37:18 +00:00
parent 0728c5375d
commit fa532301da
5 changed files with 49 additions and 35 deletions

View file

@ -20,17 +20,6 @@ our $HELP = {
]
},
'snippet add/edit' => {
title => 'snippet add/edit title',
body => 'snippet add/edit body',
related => [
{
tag => 'asset fields',
namespace => 'Asset'
},
]
},
'redirect add/edit' => {
title => 'redirect add/edit title',
body => 'redirect add/edit body',

View file

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