You are here

function views_handler_argument_node_registration_uid::init in Node registration 7

Init the handler with necessary data.

Parameters

view $view: The $view object this handler is attached to.

array $options: The item from the database; the actual contents of this will vary based upon the type of handler.

Overrides views_handler_argument::init

File

includes/views/views_handler_argument_node_registration_uid.inc, line 5

Class

views_handler_argument_node_registration_uid

Code

function init(&$view, &$options) {
  parent::init($view, $options);
  if (!empty($options['show_non_registered_nodes']) && !isset($options['show_non_registered_nodes'])) {
    $this->options['show_non_registered_nodes'] = 0;
  }
}