function taxonomy_machine_name_help in Taxonomy Machine Name 8
Implements hook_help().
File
- ./
taxonomy_machine_name.module, line 309 - This is the Taxonomy Machine Name module.
Code
function taxonomy_machine_name_help($route_name, RouteMatchInterface $route_match) {
if ($route_name === 'help.page.taxonomy_machine_name') {
$readme_file = file_exists(__DIR__ . '/README.md') ? __DIR__ . '/README.md' : __DIR__ . '/README.txt';
if (!file_exists($readme_file)) {
return NULL;
}
$text = file_get_contents($readme_file);
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;
}