You are here

function vff_help in Field Formatter Template 8.2

Same name and namespace in other branches
  1. 8 modules/vff/vff.module \vff_help()

Implements hook_help().

File

modules/vff/vff.module, line 13
Contains vff.module.

Code

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

    // Main module help for the vff module.
    case 'help.page.vff':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Views Formatter') . '</p>';
      return $output;
    default:
  }
}