1.20.x views_plugin_row.inc views_plugin_row::init(&$view, &$display, $options = NULL)

Initialize the row plugin.

File

modules/views/plugins/views_plugin_row.inc, line 27
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 init(&$view, &$display, $options = NULL) {
  $this->view = &$view;
  $this->display = &$display;

  // Overlay incoming options on top of defaults
  $this->unpack_options($this->options, isset($options) ? $options : $display->handler->get_option('row_options'));
}