t('Is equal to'), '!=' => t('Is not equal to'), ); } /** * Provide a simple textfield for equality */ function value_form(&$form, &$form_state) { $form['value'] = array( '#type' => 'textfield', '#title' => t('Value'), '#size' => 30, '#default_value' => $this->value, ); if (!empty($form_state['exposed'])) { $identifier = $this->options['expose']['identifier']; if (!isset($form_state['input'][$identifier])) { $form_state['input'][$identifier] = $this->value; } } } }