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

Bugs fixed:

* #426438 by brmassa: If the chart data is missing the provider file, it must not end as an error
parent 6e767858
No related branches found
No related tags found
No related merge requests found
...@@ -71,9 +71,13 @@ function charts_chart(&$data) { ...@@ -71,9 +71,13 @@ function charts_chart(&$data) {
// Get the information about chart modules // Get the information about chart modules
$chart_provider = module_invoke_all('charts_info'); $chart_provider = module_invoke_all('charts_info');
// Include the file that has the rendering function if (isset($chart_provider[$data['#plugin']]['file'])
include_once $chart_provider[$data['#plugin']]['file']; and is_file($chart_provider[$data['#plugin']]['file'])
if ($func = $chart_provider[$data['#plugin']]['render']) { and $func = $chart_provider[$data['#plugin']]['render']) {
// Include the file that has the rendering function
include_once $chart_provider[$data['#plugin']]['file'];
// Using the filter's rendering function, print the chart // Using the filter's rendering function, print the chart
return $func($data); return $func($data);
} }
...@@ -172,4 +176,4 @@ function charts_views_api() { ...@@ -172,4 +176,4 @@ function charts_views_api() {
'api' => 2, 'api' => 2,
'path' => drupal_get_path('module', 'charts') .'/views', 'path' => drupal_get_path('module', 'charts') .'/views',
); );
} }
\ No newline at end of file
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