You are here

function views_plugin_row::render in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 plugins/views_plugin_row.inc \views_plugin_row::render()
  2. 7.3 plugins/views_plugin_row.inc \views_plugin_row::render()

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

4 methods override views_plugin_row::render()
views_plugin_row_aggregator_rss::render in modules/aggregator/views_plugin_row_aggregator_rss.inc
Render a row object. This usually passes through to a theme template of some form, but not always.
views_plugin_row_comment_rss::render in modules/comment/views_plugin_row_comment_rss.inc
Render a row object. This usually passes through to a theme template of some form, but not always.
views_plugin_row_node_rss::render in modules/node/views_plugin_row_node_rss.inc
Render a row object. This usually passes through to a theme template of some form, but not always.
views_plugin_row_search_view::render in modules/search/views_plugin_row_search_view.inc
Override the behavior of the render() function.

File

plugins/views_plugin_row.inc, line 133
Contains the base row style plugin.

Class

views_plugin_row
Default plugin to view a single row of a table. This is really just a wrapper around a theme function.

Code

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