manage ad space help

This commit is contained in:
Colin Kuskie 2006-05-12 04:32:49 +00:00
parent 818936f415
commit b11cd4afa1
3 changed files with 24 additions and 0 deletions

View file

@ -122,6 +122,10 @@ our $HELP = {
},
],
related => [
{
tag => 'manage ad spaces',
namespace => 'AdSpace',
},
{
tag => 'edit ad',
namespace => 'AdSpace',
@ -129,6 +133,20 @@ our $HELP = {
],
},
'manage ad spaces' => {
title => 'add ad space',
body => 'add ad space body',
source => 'www_manageAdSpaces',
fields => [
],
related => [
{
tag => 'edit ad space',
namespace => 'AdSpace',
},
],
},
};
1;

View file

@ -391,6 +391,7 @@ sub www_manageAdSpaces {
}
$output .= '<div style="clear: both;"></div>';
$ac->addSubmenuItem($session->url->page("op=editAdSpace"), $i18n->get("add ad space"));
$ac->setHelp('manage ad spaces', 'AdSpace');
return $ac->render($output);
}

View file

@ -298,6 +298,11 @@ our $I18N = {
lastUpdated => 0,
},
'add ad space body' => {
message => q|<p>This screen provides you with a list of all ad spaces that have been created in WebGUI. The icons next to each ad space allow you to edit or delete an ad space. There is also a link on the screen to add new ad spaces.</p>|,
lastUpdated => 0,
},
};
1;