You are here

function pagerer_help in Pagerer 8

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

Implements hook_help().

File

./pagerer.module, line 15
Pagerer.

Code

function pagerer_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'entity.pagerer_preset.collection':
      return '<p>' . t("Pagerer allows to pre-define multiple pager configurations.") . '</p>';
    case 'entity.pagerer_preset.edit_form':
      return '<p>' . t("Select a Pagerer style for each of the left, center and right panes. Each pane can be further configured clicking the appropriate action button.") . '</p>';
  }
}