14 lines
228 B
PHP
14 lines
228 B
PHP
<?php
|
|
|
|
/**
|
|
* @author OnTheGo Systems
|
|
*/
|
|
class WPML_Privacy_Content_Factory implements IWPML_Backend_Action_Loader {
|
|
/**
|
|
* @return IWPML_Action
|
|
*/
|
|
public function create() {
|
|
return new WPML_Core_Privacy_Content();
|
|
}
|
|
}
|