You are here

function imagepicker_views_handler_filter_avail_roles::options_form in Image Picker 7

Provide the basic form which calls through to subforms.

If overridden, it is best to call through to the parent, or to at least make sure all of the functions in this form are called.

Overrides views_handler_filter::options_form

File

handlers/imagepicker_views_handler_filter_avail_roles.inc, line 22
@author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Class

imagepicker_views_handler_filter_avail_roles
@file @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['value'] = array(
    '#type' => 'value',
    '#value' => $this->value,
  );
}