You are here

function rotor_plugin_row_rotor::render in Rotor Banner 7

Same name and namespace in other branches
  1. 6.2 views/rotor_plugin_row_rotor.inc \rotor_plugin_row_rotor::render()

Render a row object. This usually passes through to a theme template of some form, but not always.

Parameters

stdClass $row: A single row of the query result, so an element of $view->result.

Return value

string The rendered output of a single row, used by the style plugin.

Overrides views_plugin_row::render

File

views/rotor_plugin_row_rotor.inc, line 26
GMap style plugin.

Class

rotor_plugin_row_rotor
Style plugin to render a map.

Code

function render($row) {
  $output = theme($this
    ->theme_functions(), $this->view, $this->options, $row);
  return trim($output);
}