function views_handler_filter::show_value_form

Shortcut to display the value form.

1 call to views_handler_filter::show_value_form()
views_handler_filter::options_form in handlers/views_handler_filter.inc
Provide the basic form which calls through to subforms.

File

handlers/views_handler_filter.inc, line 360

Class

views_handler_filter
Base class for filters.

Code

public function show_value_form(&$form, &$form_state) {
    $this->value_form($form, $form_state);
    if (empty($this->no_operator)) {
        $form['value']['#prefix'] = '<div class="views-group-box views-right-70">' . (isset($form['value']['#prefix']) ? $form['value']['#prefix'] : '');
        $form['value']['#suffix'] = (isset($form['value']['#suffix']) ? $form['value']['#suffix'] : '') . '</div>';
    }
}