You are here

function views_plugin_node_fullcalendar::render in FullCalendar 7

Same name and namespace in other branches
  1. 6 views_plugin_node_fullcalendar.inc \views_plugin_node_fullcalendar::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_plugin_node_fullcalendar.inc, line 48
Contains the node view row style plugin.

Class

views_plugin_node_fullcalendar
Plugin which performs a node_view on the resulting object.

Code

function render($row) {
  return theme($this
    ->theme_functions(), array(
    'view' => $this->view,
    'options' => $this->options,
    'row' => $row,
    'field_alias' => $this->field_alias,
  ));
}