Equality.php in Zircon Profile 8
File
core/modules/views/src/Plugin/views/filter/Equality.php
View source
<?php
namespace Drupal\views\Plugin\views\filter;
use Drupal\Core\Form\FormStateInterface;
class Equality extends FilterPluginBase {
protected $alwaysMultiple = TRUE;
public function operatorOptions() {
return array(
'=' => $this
->t('Is equal to'),
'!=' => $this
->t('Is not equal to'),
);
}
protected function valueForm(&$form, FormStateInterface $form_state) {
$form['value'] = array(
'#type' => 'textfield',
'#title' => $this
->t('Value'),
'#size' => 30,
'#default_value' => $this->value,
);
if ($exposed = $form_state
->get('exposed')) {
$identifier = $this->options['expose']['identifier'];
$user_input = $form_state
->getUserInput();
if (!isset($user_input[$identifier])) {
$user_input[$identifier] = $this->value;
$form_state
->setUserInput($user_input);
}
}
}
}
Classes
Name |
Description |
Equality |
Simple filter to handle equal to / not equal to filters |