Newer
Older
Brian Canini
committed
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
<?php
/**
* @file
* CKEditor IndentBlock install file.
*/
/**
* Implements hook_requirements().
*/
function ckeditor_indentblock_requirements($phase) {
$requirements = [];
if ($phase == 'install' || $phase == 'runtime') {
if (!function_exists('libraries_get_path')) {
module_load_include('module', 'libraries');
}
$plugin_path = libraries_get_path('indentblock') . '/plugin.js';
$plugin_detected = file_exists($plugin_path);
if ($plugin_detected) {
$requirements['indentblock'] = [
'title' => t('CKEditor IndentBlock'),
'value' => t('Plugin detected'),
'severity' => REQUIREMENT_OK,
];
}
else {
$requirements['indentblock'] = [
'title' => t('CKEditor IndentBlock'),
'value' => t('Plugin not detected'),
'severity' => REQUIREMENT_ERROR,
'description' => t('You will need to install the "Indent Block" CKEditor plugin under the libraries path before enabling this module. <a href=":plugin_url">Get the plugin from CKEditor.com</a>.', [':plugin_url' => 'http://ckeditor.com/addon/indentblock']),
];
}
}
return $requirements;
}