mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 20:09:44 +00:00
24 lines
504 B
PHP
24 lines
504 B
PHP
<?php
|
|
|
|
class NodeDataSanitizer extends NodeSanitizer {
|
|
protected $allowedTags = [ 'a' ];
|
|
|
|
/**
|
|
* @desc remove all HTML tags but links from data labels.
|
|
* If label after sanitization became empty because contained only image
|
|
* do not sanitize it.
|
|
*
|
|
* @param $data
|
|
* @return mixed
|
|
*/
|
|
public function sanitize( $data ) {
|
|
$sanitizedLabel = $this->sanitizeElementData( $data[ 'label' ] );
|
|
|
|
if ( !empty( $sanitizedLabel) ) {
|
|
$data[ 'label' ] = $sanitizedLabel;
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
}
|