class-wpml-st-privacy-content-factory.php
301 Bytes
<?php
/**
* @author OnTheGo Systems
*/
class WPML_ST_Privacy_Content_Factory implements IWPML_Backend_Action_Loader {
/**
* @return IWPML_Action
*/
public function create() {
if ( class_exists( 'WPML_Privacy_Content' ) ) {
return new WPML_ST_Privacy_Content();
}
return null;
}
}