19 lines
301 B
PHP
19 lines
301 B
PHP
<?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;
|
|
}
|
|
}
|