function views_plugin_access::init
3.x views_plugin_access.inc | views_plugin_access::init(&$view, &$display) |
2.x views_plugin_access.inc | views_plugin_access::init(&$view, &$display) |
Initialize the plugin.
Parameters
$view: The view object.
$display: The display handler.
File
- plugins/
views_plugin_access.inc, line 28 - Definition of views_plugin_access.
Class
- views_plugin_access
- The base plugin to handle access control.
Code
function init(&$view, &$display) {
$this->view = &$view;
$this->display = &$display;
if (is_object($display->handler)) {
$options = $display->handler->get_option('access');
// Overlay incoming options on top of defaults
$this->unpack_options($this->options, $options);
}
}