View source
<?php
class google_chart_tools_views_plugin_style extends views_plugin_style {
function option_definition() {
$options = parent::option_definition();
$options['title'] = array(
'default' => '',
);
$options['haxis_title'] = array(
'default' => '',
);
$options['vaxis_title'] = array(
'default' => '',
);
$options['type'] = array(
'default' => GOOGLE_CHART_TOOLS_DEFAULT_CHART,
);
$options['width'] = array(
'default' => 600,
);
$options['height'] = array(
'default' => 400,
);
$options['curve'] = array(
'default' => 0,
);
$options['3d'] = array(
'default' => 0,
);
$options['isstacked'] = array(
'default' => FALSE,
);
$options['pointsize'] = array(
'default' => 0,
);
$options['colors'] = array(
'default' => '',
);
return $options;
}
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form['grouping'] = array_slice($form['grouping'], 0, 1);
$form['grouping'][0]['field']['#options'] = array_slice($form['grouping'][0]['field']['#options'], 0, 2);
$form['title'] = array(
'#type' => 'textfield',
'#title' => t('Title'),
'#description' => t('Chart title. You may use "%" in your text to represent values that will be used for contextual filters.'),
'#default_value' => $this->options['title'],
);
$form['haxis_title'] = array(
'#type' => 'textfield',
'#title' => t('hAxis Title'),
'#description' => t('Horizontal axis title. You may use "%" in your text to represent values that will be used for contextual filters.'),
'#default_value' => $this->options['haxis_title'],
);
$form['vaxis_title'] = array(
'#type' => 'textfield',
'#title' => t('vAxis Title'),
'#description' => t('Vertical axis title. You may use "%" in your text to represent values that will be used for contextual filters.'),
'#default_value' => $this->options['vaxis_title'],
);
$form['type'] = array(
'#type' => 'select',
'#options' => google_chart_tools_load_types(),
'#title' => t('Type'),
'#description' => t('Chart type, see <a href="https://google-developers.appspot.com/chart/interactive/docs/gallery">Google Chart Tools gallery</a>.'),
'#required' => TRUE,
'#description' => t('Ex. LineChart, PieChart, ColumnChart, AreaChart, Gauge, BarChart, etc....'),
'#default_value' => $this->options['type'],
);
$form['width'] = array(
'#type' => 'textfield',
'#title' => t('Width'),
'#description' => t('Chart width in pixels'),
'#size' => 8,
'#required' => TRUE,
'#default_value' => $this->options['width'],
);
$form['height'] = array(
'#type' => 'textfield',
'#title' => t('Height'),
'#description' => t('Chart height in pixels'),
'#size' => 8,
'#required' => TRUE,
'#default_value' => $this->options['height'],
);
$form['curve'] = array(
'#type' => 'checkbox',
'#title' => t('Curve'),
'#description' => t('Use a curve function'),
'#default_value' => $this->options['curve'],
);
$form['3d'] = array(
'#type' => 'checkbox',
'#title' => t('3D'),
'#description' => t('Make chart 3D'),
'#default_value' => $this->options['3d'],
);
$form['isstacked'] = array(
'#type' => 'checkbox',
'#title' => t('Stack results'),
'#description' => t('Render Bar Chart items on top of each other'),
'#default_value' => $this->options['isstacked'],
);
$form['pointsize'] = array(
'#type' => 'textfield',
'#title' => t('Data point size'),
'#description' => t('Pixel radius to allow for datapoints to be sized'),
'#size' => 10,
'#default_value' => $this->options['pointsize'],
);
$form['colors'] = array(
'#type' => 'textfield',
'#title' => t('Colors'),
'#description' => t('A color strings separated by commas. Ex. red, #004411'),
'#size' => 32,
'#default_value' => $this->options['colors'],
);
}
function render() {
$header = array();
$item = array();
if ($this->options['type'] == 'OrgChart') {
foreach ($this
->render_fields($this->view->result) as $row_index => $row) {
foreach ($row as $key => $field) {
if (!$this->view->field[$key]->options['exclude']) {
$item[$row_index][] = $field;
}
}
}
}
else {
foreach ($this->view->field as $key => $field) {
if ($field->position !== 0 && !$field->options['exclude']) {
$column[] = !empty($field->options['label']) ? $field->options['label'] : $field->definition['title'];
}
}
foreach ($this
->render_fields($this->view->result) as $row_index => $row) {
foreach ($row as $key => $field) {
if (!$this->view->field[$key]->options['exclude']) {
if ($this->view->field[$key]->position === 0) {
$header[$row_index] = $field;
}
else {
$item[$row_index][] = strip_tags($field);
}
}
}
}
$item = _google_chart_tools_flip($item);
}
if (isset($this->options['grouping'][0])) {
_google_chart_tools_apply_grouping_conversion($header, $item);
}
$option_substitutions = array(
'vaxis_title',
'haxis_title',
'title',
);
$tokens = array();
if (!empty($this->view->build_info['substitutions'])) {
$tokens = $this->view->build_info['substitutions'];
}
$count = 0;
foreach ($this->view->display_handler
->get_handlers('argument') as $arg => $handler) {
$token = '%' . ++$count;
if (!isset($tokens[$token])) {
$tokens[$token] = '';
}
$tokens['!' . $count] = isset($this->view->args[$count - 1]) ? strip_tags(decode_entities($this->view->args[$count - 1])) : '';
}
foreach ($option_substitutions as $option_name) {
$this->options[$option_name] = str_replace(array_keys($tokens), array_values($tokens), $this->options[$option_name]);
}
$settings['chart'][drupal_clean_css_identifier($this->view->name . '-' . $this->display->id)] = array(
'header' => !empty($header) ? $header : '',
'rows' => $item,
'columns' => !empty($column) ? $column : '',
'chartType' => $this->options['type'],
'options' => array(
'vAxis' => array(
'title' => $this->options['vaxis_title'],
),
'hAxis' => array(
'title' => $this->options['haxis_title'],
),
'forceIFrame' => FALSE,
'curveType' => $this->options['curve'] ? "function" : "none",
'is3D' => $this->options['3d'],
'isStacked' => $this->options['isstacked'],
'pointSize' => $this->options['pointsize'],
'colors' => $this->options['colors'] ? explode(",", str_replace(' ', '', $this->options['colors'])) : NULL,
'title' => $this->options['title'],
'width' => $this->options['width'],
'height' => $this->options['height'],
'allowHtml' => TRUE,
),
);
if (strpos($_GET['q'], 'admin/structure/views/nojs/preview') === FALSE) {
$ret = draw_chart($settings);
return $ret['markup'];
}
}
}
function _google_chart_tools_flip($arr) {
$out = array();
foreach ($arr as $key => $subarr) {
foreach ($subarr as $subkey => $subvalue) {
$out[$subkey][$key] = $subvalue;
}
}
return $out;
}
function _google_chart_tools_apply_grouping_conversion(&$header, &$item) {
$tmp_header = array_flip($header);
foreach ($header as $value) {
$tmp_header[$value] = array();
}
foreach ($header as $key => $value) {
$tmp_header[$value][] = $key;
}
$tmp_item = array();
foreach ($item as $item_key => $datapoints) {
$tmp_item[$item_key] = array();
foreach ($tmp_header as $header_key => $header_array) {
$tmp_item[$item_key][$header_key] = NULL;
foreach ($header_array as $datapointkey) {
$tmp_item[$item_key][$header_key] += $item[$item_key][$datapointkey];
}
}
}
$header = array();
foreach ($tmp_header as $header_key => $header_array) {
$header[] = "{$header_key}";
}
foreach ($tmp_item as $item_key => $datapoints) {
$tmp_item[$item_key] = array_values($datapoints);
}
$item = $tmp_item;
}