public property ViewsConditionalField::$conditions in Views Conditional 8
Conditional operators.
Type: array
File
- src/
Plugin/ views/ field/ ViewsConditionalField.php, line 65
Class
- ViewsConditionalField
- Field handler to flag the node type.
Namespace
Drupal\views_conditional\Plugin\views\fieldCode
public $conditions = [
'eq' => 'Equal to',
'neq' => 'NOT equal to',
'gt' => 'Greater than',
'gte' => 'Greater than or equals',
'lt' => 'Less than',
'lte' => 'Less than or equals',
'em' => 'Empty',
'nem' => 'NOT empty',
'cn' => 'Contains',
'ncn' => 'Does NOT contain',
'leq' => 'Length Equal to',
'lneq' => 'Length NOT equal to',
'lgt' => 'Length Greater than',
'llt' => 'Length Less than',
];