The default list of HTML tags allowed by filter().
Type: array
See also
\Drupal\Component\Utility\Xss::filter()
File
- core/lib/Drupal/Component/Utility/Xss.php, line 28
Class
- Xss
- Provides helper to filter for cross-site scripting.
Namespace
Drupal\Component\Utility
Code
1 | protected static $htmlTags = array ( 'a' , 'em' , 'strong' , 'cite' , 'blockquote' , 'code' , 'ul' , 'ol' , 'li' , 'dl' , 'dt' , 'dd' ); |
Please login to continue.