Skip to content
Snippets Groups Projects
Commit 3564e100 authored by Bruno Massa's avatar Bruno Massa
Browse files

Improvements:

* Functions moved from one file to other in order to improve performance
parent ec6a160f
No related branches found
No related tags found
No related merge requests found
......@@ -77,6 +77,35 @@ function _chart_series_attributes(&$data, &$value, &$settings) {
}
}
/**
* Even if the series have values with attributes,
* return only the numeric values of them.
*
* @param
* Array. A given data series with or without attributes.
* @return
* Array. A data series, but only with the values, without
* the attributes.
*/
function _charts_series_values($series) {
$data = array();
foreach ($series as $index => $value) {
if (!is_numeric($index)) {
continue;
}
if (is_array($value)) {
$data[] = $value['#value'];
}
else {
$data[] = $value;
}
}
return $data;
}
/**
* Module settings page. Users can set the default layout
* of their charts.
......
......@@ -12,3 +12,25 @@
function charts_uninstall() {
variable_del('charts_settings');
}
/**
* Implementation of hook_requirements().
*/
function charts_requirements($phase) {
if ($phase == 'runtime' and !$modules = module_invoke_all('charts_info', 'list')) {
$requirements['charts']['title'] = t('Charts');
$requirements['charts']['value'] = t('No Charts provider installed');
$requirements['charts']['severity'] = REQUIREMENT_ERROR;
$requirements['charts']['description'] = t('Charts core module only provides a a common set of functions. You must install a Charts provider module to create charts.');
return $requirements;
}
elseif ($phase == 'runtime' and !$settings = variable_get('charts_settings', array())) {
$requirements['charts']['title'] = t('Charts');
$requirements['charts']['value'] = t('Charts module not yet configured');
$requirements['charts']['severity'] = REQUIREMENT_ERROR;
$requirements['charts']['description'] = t('Charts core module needs to get some default options in order to operate. You must go to <a href="!link">settings page</a> and configure it.', array('!link' => url('admin/settings/charts')));
return $requirements;
}
}
......@@ -59,57 +59,6 @@ function charts_perm() {
return array('set default settings for charts');
}
/**
* Implementation of hook_requirements().
*/
function charts_requirements($phase) {
if ($phase == 'runtime' and !$modules = module_invoke_all('charts_info', 'list')) {
$requirements['charts']['title'] = t('Charts');
$requirements['charts']['value'] = t('No Charts provider installed');
$requirements['charts']['severity'] = REQUIREMENT_ERROR;
$requirements['charts']['description'] = t('Charts core module only provides a a common set of functions. You must install a Charts provider module to create charts.');
return $requirements;
}
elseif ($phase == 'runtime' and !$settings = variable_get('charts_settings', array())) {
$requirements['charts']['title'] = t('Charts');
$requirements['charts']['value'] = t('Charts module not yet configured');
$requirements['charts']['severity'] = REQUIREMENT_ERROR;
$requirements['charts']['description'] = t('Charts core module needs to get some default options in order to operate. You must go to <a href="!link">settings page</a> and configure it.', array('!link' => url('admin/settings/charts')));
return $requirements;
}
}
/**
* Even if the series have values with attributes,
* return only the numeric values of them.
*
* @param
* Array. A given data series with or without attributes.
* @return
* Array. A data series, but only with the values, without
* the attributes.
*/
function _charts_series_values($series) {
$data = array();
foreach ($series as $index => $value) {
if (!is_numeric($index)) {
continue;
}
if (is_array($value)) {
$data[] = $value['#value'];
}
else {
$data[] = $value;
}
}
return $data;
}
/**
* Implementation of hook_theme().
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment