ckeditor_readmore.module in CKEditor Read More 8
File
ckeditor_readmore.module
View source
<?php
function ckeditor_readmore_preprocess_html(&$variables) {
$variables['#attached']['library'][] = 'ckeditor_readmore/ckeditor_readmore';
}
function ckeditor_readmore_help($route_name, \Drupal\Core\Routing\RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.ckeditor_readmore':
$filepath = dirname(__FILE__) . '/README.md';
if (file_exists($filepath)) {
$readme = file_get_contents($filepath);
}
else {
$filepath = dirname(__FILE__) . '/README.txt';
if (file_exists($filepath)) {
$readme = file_get_contents($filepath);
}
}
if (!isset($readme)) {
return NULL;
}
$output = '<pre>' . htmlspecialchars($readme) . '</pre>';
return $output;
}
}