You are here

function views_oai_pmh_plugin_style_auto::render_records in Views OAI-PMH 7.2

Same name and namespace in other branches
  1. 6.2 plugins/views_oai_pmh_plugin_style_auto.inc \views_oai_pmh_plugin_style_auto::render_records()

File

plugins/views_oai_pmh_plugin_style_auto.inc, line 106
Definition of the views_oai_pmh_plugin_style_auto class.

Class

views_oai_pmh_plugin_style_auto

Code

function render_records() {
  if ($this
    ->_check_style_objects()) {

    // Call render_records() on the appropriate object in the $_style_objects array.
    $records = $this->_style_objects[$this->_metadata_format]
      ->render_records();
    return $records;
  }
  return NULL;
}