You are here

function block_visibility_groups_help in Block Visibility Groups 8

Implements hook_help().

File

./block_visibility_groups.module, line 15
Contains block_visibility_groups.module.

Code

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

    // Main module help for the block_visibility_groups module.
    case 'help.page.block_visibility_groups':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allows the site administrator to easily manage complex visibility settings that apply to any block placed in a visibility group.');
      $output .= t('The visibility settings for all blocks in the group can be edited on one administration form.') . '</p>';
      return $output;
    default:
  }
}