You are here

protected function HandlerBase::placeholder in Views (for Drupal 7) 8.3

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 lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::op_ends in lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::op_equal in lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::op_not in lib/Drupal/views/Plugin/views/filter/Combine.php
Combine::op_not_ends in lib/Drupal/views/Plugin/views/filter/Combine.php

... See full list

File

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);
}