You are here

function toggle_editable_fields_help in Toggle Editable fields 8

Implements hook_help().

File

./toggle_editable_fields.module, line 13
Contains toggle_editable_fields.module.

Code

function toggle_editable_fields_help($route_name, RouteMatchInterface $route_match) {
  $output = '';
  switch ($route_name) {

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