You are here

function views_system_help in Views System 7.3

Same name and namespace in other branches
  1. 8 views_system.module \views_system_help()
  2. 6.3 views_system.module \views_system_help()
  3. 6.2 views_system.module \views_system_help()
  4. 7.4 views_system.module \views_system_help()

Implements hook_help().

File

./views_system.module, line 14
This module extends the Views module and allows to create customized lists (pages, blocks) of modules, themes, and theme engines that are or have been installed in Drupal's file system.

Code

function views_system_help($path, $arg) {
  switch ($path) {
    case 'admin/help#views_system':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Views System module extends the <a href="@views">Views</a> module and allows to create customized lists (pages, blocks) of modules, themes, and theme engines that are or have been  installed in Drupal\'s file system. For more information, see the online handbook entry for <a href="@views_system">Views System module</a>.', array(
        '@views' => 'http://drupal.org/project/views',
        '@views_system' => 'http://drupal.org/project/views_system',
      )) . '</p>';
      return $output;
  }
}