You are here

function tagadelic_plugin_style::pre_render in Views Tagadelic 7.2

Allow the style to do stuff before each row is rendered.

Parameters

$result: The full array of results from the query.

Overrides views_plugin_style::pre_render

File

includes/tagadelic_plugin_style.inc, line 35
Contains the tagadelic style plugin.

Class

tagadelic_plugin_style
Style plugin to render a weighted set of taxonomy terms.

Code

function pre_render($result) {
  parent::pre_render($result);
  $this
    ->build_cloud($result);
}