entity_bulk_clone.module in Entity Bulk Clone 8
Module implements Entity Bulk Clone Functionality.
Bulk clone for Entity Node and drupal commerce.
File
entity_bulk_clone.moduleView source
<?php
/**
* @file
* Module implements Entity Bulk Clone Functionality.
*
* Bulk clone for Entity Node and drupal commerce.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function entity_bulk_clone_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.entity_bulk_clone':
$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 |
---|---|
entity_bulk_clone_help | Implements hook_help(). |