bp_callout.module in Bootstrap Paragraphs 8.2
Bootstrap Paragraphs Callout module file.
File
modules/bp_callout/bp_callout.moduleView source
<?php
/**
* @file
* Bootstrap Paragraphs Callout module file.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_theme().
*/
function bp_callout_theme($existing, $type, $theme, $path) {
return [
'paragraph__bp_callout' => [
'base hook' => 'paragraph',
],
];
}
/**
* Implements hook_help().
*
* @inheritdoc
*/
function bp_callout_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.bp_callout':
$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 |
---|---|
bp_callout_help | Implements hook_help(). |
bp_callout_theme | Implements hook_theme(). |