function String::op_longer in Views (for Drupal 7) 8.3
File
- lib/
Drupal/ views/ Plugin/ views/ filter/ String.php, line 331 - Definition of Drupal\views\Plugin\views\filter\String.
Class
- String
- Basic textfield filter to handle string filtering commands including equality, like, not like, etc.
Namespace
Drupal\views\Plugin\views\filterCode
function op_longer($field) {
$placeholder = $this
->placeholder();
$this->query
->add_where_expression($this->options['group'], "LENGTH({$field}) > {$placeholder}", array(
$placeholder => $this->value,
));
}