37 lines
727 B
Perl
37 lines
727 B
Perl
package WebGUI::Help::Shortcut;
|
|
|
|
our $HELP = {
|
|
'shortcut add/edit' => {
|
|
title => '5',
|
|
body => '6',
|
|
related => [
|
|
{
|
|
tag => 'wobjects using',
|
|
namespace => 'Wobject'
|
|
},
|
|
{
|
|
tag => 'metadata manage',
|
|
namespace => 'Asset'
|
|
},
|
|
|
|
]
|
|
},
|
|
|
|
'shortcut template' => {
|
|
title => 'shortcut template title',
|
|
body => 'shortcut template body',
|
|
related => [
|
|
{
|
|
tag => 'wobjects using',
|
|
namespace => 'Wobject'
|
|
},
|
|
{
|
|
tag => 'template language',
|
|
namespace => 'Template'
|
|
},
|
|
|
|
]
|
|
},
|
|
};
|
|
|
|
1;
|