웹 양식 결과를 Google 차트 로 표시하려고합니다 . 테마의 template.php 파일에서 theme_webform_results_analysis ()를 재정의하고 Chart 모듈을 사용하여 테마 레이어 에서이 작업을 수행하고 있습니다. Drupal 6.22, Webform 6.x-3.11.
웹 폼 분석 페이지에는 일반적으로 테이블의 데이터가 표시되므로 해당 테이블의 배열을 해킹하여 물건을 Chart API에 전달하려고합니다 .
편집 : var_dump를 사용하는 방법을 알아 내고이 질문의 첫 번째 버전에서 사용했던 $ rows 배열을 사용하는 대신 $ row_data 및 $ questions 배열을 별도로 얻는 것이 더 나은 방법이라는 것을 알았습니다. 두 배열의 매시업).
편집 # 2 : 원래 $ questions 및 $ row_data 배열의 각 부분을 얻는 방법을 발견했다고 생각합니다 (아래-다른 foreach의 foreach 참조). 이제 해당 조각을 적절한 배열 (질문 당 1)로 가져 와서 모든 것을 반복 할 수있는 방법을 찾아야합니다.
template.php에있는 내용은 다음과 같습니다.
/**
* Output the content of the Analysis page.
* @see webform_results_analysis()
*/
function mytheme_webform_results_analysis($node, $data, $sids = array(), $analysis_component = NULL) {
foreach ($data as $cid => $row_data) {
if (is_array($row_data)) {
// get the questions, put them in an array
$questions = array();
$questions[] = array('data' => check_plain($node->webform['components'][$cid]['name']));
// this will print everything out in the right order - it really needs to
// make an array for each question that looks like $test_chart below
foreach ($questions as $question) {
print $question['data'] . '<br />'; // questions
foreach ($row_data as $key => $value) {
print $value[0] . '<br />'; // labels
print $value[1] . '<br />'; // results
}
}
// Set up the chart
$chart = array(
'#chart_id' => 'webform_analysis',
'#type' => CHART_TYPE_PIE_3D,
'#size' => chart_size(658, 250)
);
// not real data here, this just shows the format I'm shooting for
$test_chart = array(
'option 1' => '12',
'option 2' => '45',
'option 3' => '122'
);
// separate the above array into labels and values, add a percentage to the label
foreach ($test_chart as $key => $value) {
$chart['#data'][] = $test_chart[$key];
$chart['#labels'][] = strip_tags($key) . ' (' . round($test_chart[$key], 2) . '%)';
}
// pick some colors
$chart['#data_colors'][] = 'b0c73d';
$chart['#data_colors'][] = '667323';
$chart['#data_colors'][] = '221f1f';
$output = chart_render($chart);
}
}
if (count($row_data) == 0) {
$output = t('There are no submissions for this form.');
}
// return the data that goes into chart function, just for testing
// return $chart_data;
// someday, this might return a set of webform charts. right now it returns the fake test chart
// return $output;
}