trailing_slash.module in Trailing Slash 8
Same filename and directory in other branches
File
trailing_slash.moduleView source
<?php
use Drupal\Core\Routing\RouteMatchInterface;
define('TRAILING_SLASH_MINIMUM_PHP', '7.1');
/**
* Implements hook_help().
*/
function trailing_slash_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.trailing_slash':
$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;
}
Functions
Name | Description |
---|---|
trailing_slash_help | Implements hook_help(). |
Constants
Name | Description |
---|---|
TRAILING_SLASH_MINIMUM_PHP |