function charts_highcharts_requirements in Charts 8
Same name and namespace in other branches
- 8.4 modules/charts_highcharts/charts_highcharts.install \charts_highcharts_requirements()
- 8.3 modules/charts_highcharts/charts_highcharts.install \charts_highcharts_requirements()
- 7.2 modules/charts_highcharts/charts_highcharts.install \charts_highcharts_requirements()
- 5.0.x modules/charts_highcharts/charts_highcharts.install \charts_highcharts_requirements()
Implements hook_requirements().
File
- modules/
charts_highcharts/ charts_highcharts.install, line 11 - Installation and update hooks for the Charts Highcharts module.
Code
function charts_highcharts_requirements($phase) {
$requirements = array();
if (function_exists('libraries_detect') && ($highcharts_info = libraries_detect('highcharts'))) {
if (is_dir($highcharts_info['library path'] . '/js/exporting-server')) {
$requirements['highcharts_security'] = array(
'title' => t('Highcharts vulnerability'),
'severity' => REQUIREMENT_ERROR,
'value' => t('Dangerous sample code present'),
'description' => t('Your installation of the Highcharts library at "@path" contains a directory named "exporting-server". This directory contains dangerous sample files that may compromise the security of your site. You must delete this directory before you may use the Charts Highcharts module.', array(
'@path' => $highcharts_info['library path'],
)),
);
}
}
return $requirements;
}