34 lines
466 B
Perl
34 lines
466 B
Perl
package WebGUI::Help::Poll;
|
|
|
|
our $HELP = {
|
|
'poll add/edit' => {
|
|
title => '61',
|
|
body => '71',
|
|
related => [
|
|
{
|
|
tag => 'poll template',
|
|
namespace => 'Poll'
|
|
},
|
|
{
|
|
tag => 'wobjects using',
|
|
namespace => 'Wobject'
|
|
}
|
|
]
|
|
},
|
|
'poll template' => {
|
|
title => '73',
|
|
body => '74',
|
|
related => [
|
|
{
|
|
tag => 'poll add/edit',
|
|
namespace => 'Poll'
|
|
},
|
|
{
|
|
tag => 'wobject template',
|
|
namespace => 'Wobject'
|
|
}
|
|
]
|
|
},
|
|
};
|
|
|
|
1;
|