You are here

HtmlEntityDecode.php in Tamper 8

File

src/Plugin/Tamper/HtmlEntityDecode.php
View source
<?php

namespace Drupal\tamper\Plugin\Tamper;

use Drupal\tamper\Exception\TamperException;
use Drupal\tamper\TamperableItemInterface;
use Drupal\tamper\TamperBase;

/**
 * Plugin implementation for html entity decode.
 *
 * @Tamper(
 *   id = "html_entity_decode",
 *   label = @Translation("HTML entity decode"),
 *   description = @Translation("Convert all HTML entities such as &amp;amp; and &amp;quot; to &amp; and &quot;."),
 *   category = "Text"
 * )
 */
class HtmlEntityDecode extends TamperBase {

  /**
   * {@inheritdoc}
   */
  public function tamper($data, TamperableItemInterface $item = NULL) {
    if (!is_string($data)) {
      throw new TamperException('Input should be a string.');
    }
    return html_entity_decode($data, ENT_QUOTES, 'UTF-8');
  }

}

Classes

Namesort descending Description
HtmlEntityDecode Plugin implementation for html entity decode.