35 lines
695 B
Perl
35 lines
695 B
Perl
package WebGUI::Help::Asset_Collaboration;
|
|
|
|
our $HELP = {
|
|
'collaboration add/edit' => {
|
|
title => 'collaboration add/edit title',
|
|
body => 'collaboration add/edit body',
|
|
related => [
|
|
{
|
|
tag => 'content filtering',
|
|
namespace => 'WebGUI'
|
|
},
|
|
]
|
|
},
|
|
|
|
'collaboration template labels' => {
|
|
title => 'collaboration template labels title',
|
|
body => 'collaboration template labels body',
|
|
related => [
|
|
]
|
|
},
|
|
|
|
'collaboration post list template variables' => {
|
|
title => 'collaboration post list template variables title',
|
|
body => 'collaboration post list template variables body',
|
|
related => [
|
|
{
|
|
tag => 'asset fields',
|
|
namespace => 'Asset'
|
|
},
|
|
]
|
|
},
|
|
|
|
};
|
|
|
|
1;
|