You are here

function views_plugin_row_rdf::render in Views Atom 6

Same name and namespace in other branches
  1. 7 views_plugin_row_rdf.inc \views_plugin_row_rdf::render()
1 method overrides views_plugin_row_rdf::render()
views_plugin_row_rdf_node::render in views/views_plugin_row_rdf_node.inc

File

views/views_plugin_row_rdf.inc, line 17
Contains the RDF row style plugin.

Class

views_plugin_row_rdf
Plugin which performs a node_view on the resulting object and formats it as an RSS item.

Code

function render($row) {

  // For the most part, this code is taken from node_feed() in node.module
  global $base_url;
  $nid = $row->{$this->field_alias};
  if (!is_numeric($nid)) {
    return;
  }
  return theme($this
    ->theme_functions(), $this->view, $this->options, $row);
}