You are here

function empty_fields_help in Empty fields 8

Implements hook_help().

File

./empty_fields.module, line 18
Contains the implementation for the empty_fields module.

Code

function empty_fields_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.empty_fields':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides a way to show empty fields that would otherwise be hidden.') . '</p>';
      return $output;
  }
}