You are here

function easychart_chart_options in Easychart 7.2

Same name and namespace in other branches
  1. 7.3 modules/easychart_wysiwyg/easychart_wysiwyg.module \easychart_chart_options()
1 string reference to 'easychart_chart_options'
easychart_menu in ./easychart.module

File

./easychart.module, line 445
Easychart module file.

Code

function easychart_chart_options($chartNode) {
  if (!empty($chartNode->easychart[LANGUAGE_NONE][0]['config'])) {
    drupal_json_output(array(
      'options' => $chartNode->easychart[LANGUAGE_NONE][0]['config'],
    ));
  }
  else {
    drupal_not_found();
  }
}