You are here

function spaces_handler_filter_spaces_current::operator_form in Spaces 7

Same name and namespace in other branches
  1. 6.3 includes/spaces_handler_filter_spaces_current.inc \spaces_handler_filter_spaces_current::operator_form()
  2. 6 includes/spaces_handler_filter_spaces_current.inc \spaces_handler_filter_spaces_current::operator_form()
  3. 6.2 includes/spaces_handler_filter_spaces_current.inc \spaces_handler_filter_spaces_current::operator_form()
  4. 7.3 includes/spaces_handler_filter_spaces_current.inc \spaces_handler_filter_spaces_current::operator_form()

Provide a form for setting the operator.

This may be overridden by child classes, and it must define $form['operator'];

Overrides views_handler_filter::operator_form

File

includes/spaces_handler_filter_spaces_current.inc, line 41

Class

spaces_handler_filter_spaces_current
Spaces view filter handler.

Code

function operator_form(&$form, &$form_state) {
  $form['message'] = array(
    '#type' => 'item',
    '#value' => t('Items will be filtered to show only those that belong to the active space.'),
  );
}