You are here

public function TamperBase::multiple in Tamper 8

Indicates whether the returned value requires multiple handling.

Return value

bool TRUE when the returned value contains a list of values to be processed. For example, when the 'data' variable is a string and the tampered value is an array.

Overrides TamperInterface::multiple

5 methods override TamperBase::multiple()
ArrayFilter::multiple in src/Plugin/Tamper/ArrayFilter.php
Indicates whether the returned value requires multiple handling.
Explode::multiple in src/Plugin/Tamper/Explode.php
Indicates whether the returned value requires multiple handling.
FindReplace::multiple in src/Plugin/Tamper/FindReplace.php
Indicates whether the returned value requires multiple handling.
Required::multiple in src/Plugin/Tamper/Required.php
Indicates whether the returned value requires multiple handling.
Unique::multiple in src/Plugin/Tamper/Unique.php
Indicates whether the returned value requires multiple handling.

File

src/TamperBase.php, line 43

Class

TamperBase
Provides a base class to tamper data from.

Namespace

Drupal\tamper

Code

public function multiple() {
  return FALSE;
}