-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrange_slider.module
More file actions
39 lines (35 loc) · 1008 Bytes
/
range_slider.module
File metadata and controls
39 lines (35 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* @file
* Module file for the Range Slider module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function range_slider_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.range_slider':
$text = file_get_contents(dirname(__FILE__) . '/README.md');
if (!\Drupal::moduleHandler()->moduleExists('markdown')) {
return '<pre>' . $text . '</pre>';
}
// 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;
}
/**
* Implements hook_theme().
*/
function range_slider_theme() {
return [
'range_slider' => [
'render element' => 'element',
],
];
}