ActivationAjaxFactory.php
308 Bytes
<?php
namespace WPML\TM\Menu\TranslationServices;
class ActivationAjaxFactory implements \IWPML_Backend_Action_Loader {
/**
* @return ActivationAjax
*/
public function create() {
$tp_client_factory = new \WPML_TP_Client_Factory();
return new ActivationAjax( $tp_client_factory->create() );
}
}