61 lines
1.3 KiB
Perl
61 lines
1.3 KiB
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'
|
|
},
|
|
]
|
|
},
|
|
|
|
'collaboration template' => {
|
|
title => 'collaboration template title',
|
|
body => 'collaboration template body',
|
|
related => [
|
|
{
|
|
tag => 'collaboration template labels',
|
|
namespace => 'Asset_Collaboration',
|
|
},
|
|
{
|
|
tag => 'collaboration post list template variables',
|
|
namespace => 'Asset_Collaboration',
|
|
},
|
|
]
|
|
},
|
|
|
|
'collaboration search template' => {
|
|
title => 'collaboration search template title',
|
|
body => 'collaboration search template body',
|
|
related => [
|
|
{
|
|
tag => 'collaboration post list template variables',
|
|
namespace => 'Asset_Collaboration',
|
|
},
|
|
]
|
|
},
|
|
|
|
};
|
|
|
|
1;
|