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::op_contains in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::op_ends in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::op_equal in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::op_not in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::op_not_ends 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 501
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);
}