diff --git a/lib/WebGUI/Help/AdSpace.pm b/lib/WebGUI/Help/AdSpace.pm index 0e6381349..de0f3c925 100644 --- a/lib/WebGUI/Help/AdSpace.pm +++ b/lib/WebGUI/Help/AdSpace.pm @@ -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; diff --git a/lib/WebGUI/Operation/AdSpace.pm b/lib/WebGUI/Operation/AdSpace.pm index 20fdfe094..3d0b3601d 100644 --- a/lib/WebGUI/Operation/AdSpace.pm +++ b/lib/WebGUI/Operation/AdSpace.pm @@ -391,6 +391,7 @@ sub www_manageAdSpaces { } $output .= '
'; $ac->addSubmenuItem($session->url->page("op=editAdSpace"), $i18n->get("add ad space")); + $ac->setHelp('manage ad spaces', 'AdSpace'); return $ac->render($output); } diff --git a/lib/WebGUI/i18n/English/AdSpace.pm b/lib/WebGUI/i18n/English/AdSpace.pm index 4e55a4cb1..8a6a2bb22 100644 --- a/lib/WebGUI/i18n/English/AdSpace.pm +++ b/lib/WebGUI/i18n/English/AdSpace.pm @@ -298,6 +298,11 @@ our $I18N = { lastUpdated => 0, }, + 'add ad space body' => { + message => q|

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.

|, + lastUpdated => 0, + }, + }; 1;