function warden_help in Warden 6
Same name and namespace in other branches
- 8.2 warden.module \warden_help()
- 8 warden.module \warden_help()
- 7 warden.module \warden_help()
- 3.x warden.module \warden_help()
Implements hook_help().
Displays help and module information.
File
- ./
warden.module, line 12 - Drupal system status
Code
function warden_help($path, $arg) {
switch ($path) {
case 'admin/help#warden':
$output = '<h2>' . t('Warden module information') . '</h2>';
$output .= '<p>' . t('Warden provides an easy way to get an overview of all the available updates for your Drupal websites.') . '<br/>';
$output .= t('Enable the Warden module on all your Drupal websites and allow reporting to your own Warden Dashboard for a centralized overview.') . '</p>';
$output .= '<p>' . t('How does it work?') . '</p>';
$output .= '<ul>';
$output .= '<li>' . t('Enable the Warden module on your Drupal website') . '</li>';
$output .= '<li>' . t('Click the "Add this site to your Warden Service" button to be redirected to your Warden Service with the necessary credentials.') . '</li>';
$output .= '</ul>';
return $output;
break;
}
}