You are here

function views_entity_form_field_help in Views Entity Form Field 8

Implements hook_help().

File

./views_entity_form_field.module, line 14
Contains views_entity_form_field.module.

Code

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

    // Main module help for the views_entity_form_field module.
    case 'help.page.views_entity_form_field':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Add entity form field widgets to a view.') . '</p>';
      return $output;
    default:
  }
}