mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 12:35:31 +00:00
29 lines
614 B
PHP
29 lines
614 B
PHP
<?php
|
|
|
|
class SanitizerBuilder {
|
|
|
|
/**
|
|
* @desc provide sanitizer for a given node type
|
|
*
|
|
* @param $type
|
|
* @return NodeSanitizer
|
|
*/
|
|
static public function createFromType( $type ) {
|
|
switch ( $type ) {
|
|
case 'data':
|
|
return new NodeDataSanitizer();
|
|
case 'horizontal-group-content':
|
|
return new NodeHorizontalGroupSanitizer();
|
|
case 'title':
|
|
return new NodeTitleSanitizer();
|
|
case 'image':
|
|
return new NodeImageSanitizer();
|
|
case 'hero-mobile':
|
|
case 'hero-mobile-experimental':
|
|
return new NodeHeroImageSanitizer();
|
|
default:
|
|
return new PassThroughSanitizer();
|
|
}
|
|
}
|
|
}
|