You are here

function fico_help in Field Formatter Condition 8

Implements hook_help().

File

./fico.module, line 20
Contains fico.module.

Code

function fico_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.fico':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Adds conditional functionality to fields.') . '</p>';
      return $output;
    default:
  }
}