You are here

function pagerer_help in Pagerer 7

Same name and namespace in other branches
  1. 8.2 pagerer.module \pagerer_help()
  2. 8 pagerer.module \pagerer_help()

Implements hook_help().

File

./pagerer.module, line 22
Pagerer

Code

function pagerer_help($path, $arg) {
  switch ($path) {
    case _PAGERER_CONFIG_PATH:
      $output = '<p>' . t("Pagerer allows to pre-define multiple pager configurations through the 'presets'. A preset can be selected as a replacement of Drupal's core pager theme.") . '</p>';
      return $output;
    case _PAGERER_CONFIG_PATH . '/edit/%':
      $output = '<p>' . t("Select a Pagerer theme for each of the left, center and right panes. Each pane can be further configured clicking the appropriate action button.") . '</p>';
      return $output;
  }
}