function unique_field_help in Unique field 8
Same name and namespace in other branches
- 8.2 unique_field.module \unique_field_help()
- 6 unique_field.module \unique_field_help()
- 7 unique_field.module \unique_field_help()
Implements hook_help().
File
- ./
unique_field.module, line 33
Code
function unique_field_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.unique_field':
$output = '<p>' . 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.") . '</p>';
return $output;
}
}