protected function HandlerBase::placeholder

Provides a unique placeholders for handlers.

Return value

string A placeholder which contains the table and the fieldname.

23 calls to HandlerBase::placeholder()
Combine::opContains in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::opEndsWith in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::opEqual in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::opNotEnds in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::opNotLike in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/Combine.php

... See full list

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/HandlerBase.php, line 490
Definition of Drupal\views\Plugin\views\HandlerBase.

Class

HandlerBase

Namespace

Drupal\views\Plugin\views

Code

protected function placeholder() {
  return $this->query
    ->placeholder($this->table . '_' . $this->field);
}