-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbrightcove_media_migrate.module
40 lines (37 loc) · 1.29 KB
/
brightcove_media_migrate.module
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
40
<?php
/**
* @file
* Primary module hooks for Brightcove Media Migrate module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Provide online user help.
*
* @param string $route_name
* For page-specific help, use the route name.
* @param Drupal\Core\Routing\RouteMatchInterface $route_match
* The current route match.
*
* @return string|string[]
* A render array, localized string, or object that can be rendered.
*/
function brightcove_media_migrate_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.brightcove_media_migrate':
$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);
$filterResult = $filter->process($text, 'en');
$text = $filterResult->getProcessedText();
return '<div>' . $text->getHtml() . '</div>';
}
}
return NULL;
}