You are here

function views_rows_wrapper_help in Views Rows Wrapper 8

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

Implements hook_help().

File

./views_rows_wrapper.module, line 20
Views Rows Wrapper module help and theme functions.

Code

function views_rows_wrapper_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the views_rows_wrapper module.
    case 'help.page.views_rows_wrapper':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The view style plugin, that combines a user defined number of rows
                           into sets, wrapped by chosen elements and attributes.') . '</p>';
      return $output;
    default:
  }
}