You are here

function workbench_access_handler_filter_access::init in Workbench Access 7

Provide some extra help to get the operator/value easier to use.

This likely has to be overridden by filters which are more complex than simple operator/value.

Overrides views_handler_filter_many_to_one::init

File

includes/workbench_access_handler_filter_access.inc, line 11
Views integration for Workbench.

Class

workbench_access_handler_filter_access
@file Views integration for Workbench.

Code

function init(&$view, &$options) {
  parent::init($view, $options);
  $this->value = array(
    $options['access_id'],
  );
}