mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 04:22:37 +00:00
16 lines
347 B
PHP
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;
|
|
}
|
|
}
|