ckeditor_div_manager.install in CKEditor Div Manager 8
Install, update, and uninstall functions for CKEditor Div Manager.
File
ckeditor_div_manager.installView source
<?php
/**
* @file
* Install, update, and uninstall functions for CKEditor Div Manager.
*/
/**
* Implements hook_requirements().
*/
function ckeditor_div_manager_requirements($phase) {
$requirements = [];
if ($phase == 'install' || $phase == 'runtime') {
$path = '/libraries/ckeditor/plugins/div/';
$plugin_detected = file_exists(DRUPAL_ROOT . $path . 'plugin.js');
if ($plugin_detected) {
$requirements['div'] = [
'title' => t('CKEditor Div Manager'),
'value' => t('Plugin detected'),
'severity' => REQUIREMENT_OK,
];
}
else {
$requirements['div'] = [
'title' => t('CKEditor Div Manager'),
'value' => t('Plugin not detected'),
'severity' => REQUIREMENT_ERROR,
'description' => t('The CKEditor plugin <b>Div Container Manager</b> is
required. Download <a href=":url">here</a> and copy to
<code>:path</code>.', [
':url' => 'https://ckeditor.com/cke4/addon/div',
':path' => $path,
]),
];
}
}
return $requirements;
}
Functions
Name | Description |
---|---|
ckeditor_div_manager_requirements | Implements hook_requirements(). |