Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. TwigExtension.php

function TwigExtension::escapePlaceholder

Provides a placeholder wrapper around ::escapeFilter.

Parameters

\Twig\Environment $env: A Twig Environment instance.

mixed $string: The value to be escaped.

Return value

string|null The escaped, rendered output, or NULL if there is no valid output.

File

core/lib/Drupal/Core/Template/TwigExtension.php, line 392

Class

TwigExtension
A class providing Drupal Twig extensions.

Namespace

Drupal\Core\Template

Code

public function escapePlaceholder(Environment $env, $string) {
    $return = $this->escapeFilter($env, $string);
    return $return ? '<em class="placeholder">' . $return . '</em>' : NULL;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal