You are here

function unique_field_help in Unique field 8.2

Same name and namespace in other branches
  1. 8 unique_field.module \unique_field_help()
  2. 6 unique_field.module \unique_field_help()
  3. 7 unique_field.module \unique_field_help()

Implements hook_help().

File

./unique_field.module, line 44

Code

function unique_field_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.unique_field':
      $output = '';
      $output .= t("The Unique Field module allows administrators to require that content supplied for specified fields is unique. For example, you may require that each node has a unique title or a different author. For configuration options, please see the <em>Unique Field restrictions</em> section of a content type's administration page.");
      return $output;
  }
}