You are here

function unique_field_ajax_help in Unique field ajax 8

Same name and namespace in other branches
  1. 2.x unique_field_ajax.module \unique_field_ajax_help()

Implements hook_help().

File

./unique_field_ajax.module, line 16
Unique value for cck fields check module.

Code

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

    // Main module help for the unique_field_ajax module.
    case 'help.page.unique_field_ajax':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Unique Field module allows administrators to require that content supplied for specified fields is unique.') . '</p>';
      return $output;
    default:
  }
}