The list of HTML tags allowed by filterAdmin().
Type: array
See also
\Drupal\Component\Utility\Xss::filterAdmin()
File
- core/lib/Drupal/Component/Utility/Xss.php, line 19
Class
- Xss
- Provides helper to filter for cross-site scripting.
Namespace
Drupal\Component\Utility
Code
1 | protected static $adminTags = array ( 'a' , 'abbr' , 'acronym' , 'address' , 'article' , 'aside' , 'b' , 'bdi' , 'bdo' , 'big' , 'blockquote' , 'br' , 'caption' , 'cite' , 'code' , 'col' , 'colgroup' , 'command' , 'dd' , 'del' , 'details' , 'dfn' , 'div' , 'dl' , 'dt' , 'em' , 'figcaption' , 'figure' , 'footer' , 'h1' , 'h2' , 'h3' , 'h4' , 'h5' , 'h6' , 'header' , 'hgroup' , 'hr' , 'i' , 'img' , 'ins' , 'kbd' , 'li' , 'mark' , 'menu' , 'meter' , 'nav' , 'ol' , 'output' , 'p' , 'pre' , 'progress' , 'q' , 'rp' , 'rt' , 'ruby' , 's' , 'samp' , 'section' , 'small' , 'span' , 'strong' , 'sub' , 'summary' , 'sup' , 'table' , 'tbody' , 'td' , 'tfoot' , 'th' , 'thead' , 'time' , 'tr' , 'tt' , 'u' , 'ul' , 'var' , 'wbr' ); |
Please login to continue.