You are here

protected function HandlerBase::placeholder in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Plugin/views/HandlerBase.php \Drupal\views\Plugin\views\HandlerBase::placeholder()

Provides a unique placeholders for handlers.

Return value

string A placeholder which contains the table and the fieldname.

21 calls to HandlerBase::placeholder()
Combine::opContains in core/modules/views/src/Plugin/views/filter/Combine.php
Combine::opEndsWith in core/modules/views/src/Plugin/views/filter/Combine.php
Combine::opEqual in core/modules/views/src/Plugin/views/filter/Combine.php
Combine::opNotEndsWith in core/modules/views/src/Plugin/views/filter/Combine.php
Combine::opNotLike in core/modules/views/src/Plugin/views/filter/Combine.php

... See full list

File

core/modules/views/src/Plugin/views/HandlerBase.php, line 516
Contains \Drupal\views\Plugin\views\HandlerBase.

Class

HandlerBase
Base class for Views handler plugins.

Namespace

Drupal\views\Plugin\views

Code

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