You are here

public function link_views_handler_filter_protocol::options_form in Link 7

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. 6 views/link_views_handler_filter_protocol.inc \link_views_handler_filter_protocol::options_form()

Options form.

@codingStandardsIgnoreStart

Overrides views_handler_filter::options_form

File

views/link_views_handler_filter_protocol.inc, line 50
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

public function options_form(&$form, &$form_state) {

  //@codingStandardsIgnoreEnd
  parent::options_form($form, $form_state);
  $form['case'] = array(
    '#type' => 'value',
    '#value' => 0,
  );
}