You are here

function vmi_help in View Modes Inventory - Bootstrap Ready 8.2

Same name and namespace in other branches
  1. 8 vmi.module \vmi_help()

Implements hook_help().

File

./vmi.module, line 15
Display Suite core functions.

Code

function vmi_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.vmi':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<br/>' . t('The <a href="https://www.drupal.org/project/vmi">View modes inventory</a> module has a set of template view modes that we typically use (some of them) in each website.');
      return $output;
  }
}