PortableInfobox/services/Sanitizers/NodeDataSanitizer.php
2015-12-30 11:00:10 +01:00

22 lines
477 B
PHP

<?php
class NodeDataSanitizer extends NodeSanitizer {
/**
* @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' ], [ 'a' ] );
if ( !empty( $sanitizedLabel) ) {
$data[ 'label' ] = $sanitizedLabel;
}
return $data;
}
}