You are here

function simplify_help in Simplify 7.2

Same name and namespace in other branches
  1. 7.3 simplify.module \simplify_help()

Implements hook_help().

File

./simplify.module, line 10
Simplifies the admin interface.

Code

function simplify_help($path, $arg) {
  switch ($path) {
    case 'admin/config/user-interface/simplify':
      $output = '<p>' . t('Check boxes to hide those items from the admin interface.') . '</p>';
      return $output;
    case 'admin/help#simplify':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Simplify module offers the ability to simplify the admin interface through simple on/off checkboxes. If desired, you may disable the Simplify module from the <a href="@modules">Module administration page</a>. See the <a href="@project">Simplify project page</a> page for more information.', array(
        '@modules' => url('admin/modules'),
        '@project' => 'http://drupal.org/project/simplify',
      )) . '</p>';
      return $output;
  }
}