You are here

function link_views_handler_filter_protocol::options in Link 6

Set defaults for the filter options.

File

views/link_views_handler_filter_protocol.inc, line 15
Contains filter handlers for protocol filters with views.

Class

link_views_handler_filter_protocol
Filter handler for limiting a view to URLs of a certain protocol.

Code

function options(&$options) {
  parent::options($options);
  $options['operator'] = 'OR';
  $options['value'] = 'http';
  $options['case'] = 0;
}