You are here

function link_views_handler_filter_protocol::options_form in Link 6

Same name and namespace in other branches
  1. 6.2 views/link_views_handler_filter_protocol.inc \link_views_handler_filter_protocol::options_form()
  2. 7 views/link_views_handler_filter_protocol.inc \link_views_handler_filter_protocol::options_form()

File

views/link_views_handler_filter_protocol.inc, line 38
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_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['case'] = array(
    '#type' => 'value',
    '#value' => 0,
  );
}