मैं Google चार्ट के रूप में वेबफ़ॉर्म परिणाम प्रदर्शित करने का प्रयास कर रहा हूं । मैं अपनी थीम के template.php फ़ाइल पर theme_webform_results_analysis () को ओवरराइड करके और चार्ट मॉड्यूल का उपयोग करके थीम लेयर पर कर रहा हूं । Drupal 6.22, वेबफॉर्म 6.x-3.11।
वेबफॉर्म विश्लेषण पृष्ठ सामान्य रूप से एक तालिका में डेटा दिखाता है, इसलिए मैं चार्ट एपीआई में सामान पास करने के लिए उस तालिका के सरणियों को हैक करने की कोशिश कर रहा हूं ।
संपादित करें : मैंने सोचा कि कैसे var_dump का उपयोग किया जाए और पाया कि बेहतर तरीका $ row_data और $ प्रश्न सरणियों में अलग-अलग हो सकता है (बजाय $ पंक्तियों के सरणी का उपयोग करने के लिए जो मुझे इस प्रश्न के पहले संस्करण में मिला था) दोनों सरणियों का एक मैशप)।
संपादित करें # 2 : मुझे लगता है कि मुझे पता चला है कि मूल $ प्रश्नों और $ row_data सरणियों के प्रत्येक टुकड़े को कैसे पकड़ा जाए (नीचे देखें - दूसरे फॉर्च्यूनर में फॉर्च्यूनर)। इसलिए अब मुझे उन टुकड़ों को उचित सरणियों में लाने की आवश्यकता है (1 प्रति प्रश्न) और उन सभी के माध्यम से पुनरावृत्त करने का एक तरीका खोजना होगा।
यहाँ मुझे क्या मिला है?
/**
* 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;
}