PortableInfobox/services/Sanitizers/NodeHeroImageSanitizer.php
2015-12-23 15:54:03 +01:00

16 lines
347 B
PHP

<?php
class NodeHeroImageSanitizer extends NodeSanitizer implements NodeTypeSanitizerInterface {
/**
* @param $data
* @return mixed
*/
public function sanitize( $data ) {
if ( !empty( $data[ 'title' ][ 'value' ] ) ) {
$data[ 'title' ][ 'value' ] = $this->sanitizeElementData( $data[ 'title' ][ 'value' ] );
}
return $data;
}
}