15 lines
265 B
Perl
15 lines
265 B
Perl
package WebGUI::Help::Macro_AdSpace;
|
|
|
|
our $HELP = { ##hashref of hashes
|
|
'ad space' => {
|
|
title => 'adspace title', #The title and body are looked up in the
|
|
body => 'adspace body', #i18n file of the same name
|
|
fields => [
|
|
],
|
|
related => [
|
|
],
|
|
},
|
|
|
|
};
|
|
|
|
1;
|