tamper-8.x-1.x-dev/src/Plugin/Tamper/StrLen.php
src/Plugin/Tamper/StrLen.php
<?php
namespace Drupal\tamper\Plugin\Tamper;
use Drupal\tamper\Exception\TamperException;
use Drupal\tamper\TamperBase;
use Drupal\tamper\TamperableItemInterface;
/**
* Plugin implementation of the Str Len plugin.
*
* @Tamper(
* id = "str_len",
* label = @Translation("Get string length"),
* description = @Translation("Get the length of a string"),
* category = @Translation("Text"),
* itemUsage = "ignored"
* )
*/
class StrLen extends TamperBase {
/**
* {@inheritdoc}
*/
public function tamper($data, ?TamperableItemInterface $item = NULL) {
// Don't process null values.
if (is_null($data)) {
return $data;
}
if (!is_string($data)) {
throw new TamperException('Input should be a string.');
}
return mb_strlen($data);
}
}
