function SearchRow::render

Override the behavior of the render() function.

Overrides RowPluginBase::render

File

drupal/core/modules/search/lib/Drupal/search/Plugin/views/row/SearchRow.php, line 45
Definition of Drupal\search\Plugin\views\row\SearchRow.

Class

SearchRow
Plugin which performs a node_view on the resulting object.

Namespace

Drupal\search\Plugin\views\row

Code

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