You are here

public static function Xss::getAdminTagList in Service Container 7.2

Same name and namespace in other branches
  1. 7 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().

File

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;
}