function views_plugin_row::init
Same name in other branches
- 7.x-3.x plugins/views_plugin_row.inc \views_plugin_row::init()
Initialize the row plugin.
1 call to views_plugin_row::init()
- views_plugin_row_node_view::init in modules/
node/ views_plugin_row_node_view.inc - Initialize the row plugin.
1 method overrides views_plugin_row::init()
- views_plugin_row_node_view::init in modules/
node/ views_plugin_row_node_view.inc - Initialize the row plugin.
File
-
plugins/
views_plugin_row.inc, line 28
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'));
}