function views_cumulus_summary_style_plugin::render in Cumulus 6.2
File
- includes/
views/ views_cumulus_summary_style_plugin.inc, line 22
Class
- views_cumulus_summary_style_plugin
- A tag-cloud summary style view.
Code
function render() {
foreach ($this->view->result as $row) {
$this->rendered_fields[] = array(
'link' => 'taxonomy/term/' . $row->term_node_tid,
'name' => $row->term_data_name,
'weight' => $row->num_records,
);
}
$output .= theme($this
->theme_functions(), $this->view, $this->options, $rows, $title);
return $output;
}