function views_plugin_row::render

Same name in other branches
  1. 7.x-3.x 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

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 : '');
}