You are here

public static function Xss::getAdminTagList in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Component/Utility/Xss.php \Drupal\Component\Utility\Xss::getAdminTagList()

Gets the list of HTML tags allowed by Xss::filterAdmin().

Return value

array The list of HTML tags allowed by filterAdmin().

1 call to Xss::getAdminTagList()
Renderer::ensureMarkupIsSafe in core/lib/Drupal/Core/Render/Renderer.php
Escapes #plain_text or filters #markup as required.

File

core/lib/Drupal/Component/Utility/Xss.php, line 339
Contains \Drupal\Component\Utility\Xss.

Class

Xss
Provides helper to filter for cross-site scripting.

Namespace

Drupal\Component\Utility

Code

public static function getAdminTagList() {
  return static::$adminTags;
}