warden.module in Warden 8
Same filename and directory in other branches
Drupal system status
File
warden.moduleView source
<?php
/**
* @file
* Drupal system status
*/
/**
* Implements hook_help().
*
* Displays help and module information.
*/
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;
}
}
Functions
Name | Description |
---|---|
warden_help | Implements hook_help(). |