function password_field_help in Password Field 8
Implements hook_help().
File
- ./
password_field.module, line 13 - Contains password_field.module.
Code
function password_field_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the password_field module.
case 'help.page.password_field':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('module that saves password') . '</p>';
return $output;
default:
}
}