function gallery_assist_help in Gallery Assist 6
Implementation of hook_help().
File
- ./
gallery_assist.module, line 59 - Drupal content type with gallery functionality.
Code
function gallery_assist_help($path, $arg) {
// gallery_assist_add_css('gallery_assist');
$t = get_t();
switch ($path) {
case 'admin/help#gallery_assist':
$output = $t('<p>Install the <a href="@advhelp" target="_blank">Advanced Help</a> module to read the documantation of GA or visit the <a href="@prepage" target="_blank">presentation page</a>.</p>', array(
'@advhelp' => url('http://www.drupal.org/project/advanced_help'),
'@prepage' => url('http://simple.puntolatinoclub.de/docu/gallery-assist'),
));
return $output;
break;
}
}