15 lines
308 B
PHP
15 lines
308 B
PHP
<?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() );
|
|
}
|
|
}
|