function password_policy_help in Password Policy 8.3
Same name and namespace in other branches
- 5 password_policy.module \password_policy_help()
- 6 password_policy.module \password_policy_help()
- 7.2 password_policy.module \password_policy_help()
- 7 password_policy.module \password_policy_help()
Implements hook_help().
File
- ./
password_policy.module, line 370 - Module file for the Password Policy module.
Code
function password_policy_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.password_policy':
$text = file_get_contents(dirname(__FILE__) . "/README.md");
if (!\Drupal::moduleHandler()
->moduleExists('markdown')) {
return '<pre>' . $text . '</pre>';
}
else {
// Use the Markdown filter to render the README.
$filter_manager = \Drupal::service('plugin.manager.filter');
$settings = \Drupal::configFactory()
->get('markdown.settings')
->getRawData();
$config = [
'settings' => $settings,
];
$filter = $filter_manager
->createInstance('markdown', $config);
return $filter
->process($text, 'en');
}
}
return NULL;
}