class-wpml-tm-ams-synchronize-actions-factory.php 1.13 KB
<?php

use WPML\TM\ATE\UsersByCapsRepository;
use function WPML\Container\make;

/**
 * @author OnTheGo Systems
 */
class WPML_TM_AMS_Synchronize_Actions_Factory implements IWPML_Backend_Action_Loader {

	/**
	 * @return WPML_TM_AMS_Synchronize_Actions|null
	 */
	public function create() {
		if ( WPML_TM_ATE_Status::is_enabled_and_activated() ) {
			$ams_api = make( WPML_TM_AMS_API::class );

			global $wpdb;
			$user_query_factory = new WPML_WP_User_Query_Factory();

			$wp_roles                      = wp_roles();
			$translator_records            = new WPML_Translator_Records( $wpdb, $user_query_factory, $wp_roles );
			$manager_records               = new WPML_Translation_Manager_Records( $wpdb, $user_query_factory, $wp_roles );
			$user_records                  = make( \WPML_TM_AMS_Users::class );
			$user_factory                  = new WPML_WP_User_Factory();
			$translator_activation_records = new WPML_TM_AMS_Translator_Activation_Records( new WPML_WP_User_Factory() );

			return new WPML_TM_AMS_Synchronize_Actions(
				$ams_api,
				$user_records,
				$user_factory,
				$translator_activation_records
			);
		}

		return null;
	}
}