function phone_international_help in International Phone 8.2
Same name and namespace in other branches
- 8 phone_international.module \phone_international_help()
- 3.x phone_international.module \phone_international_help()
Implements hook_help().
File
- ./
phone_international.module, line 13 - Contains phone_international.module.
Code
function phone_international_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the sb_testing module.
case 'help.page.phone_international':
$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');
}
default:
}
}