class-wpml-tm-rest-jobs-factory.php
813 Bytes
<?php
use WPML\TM\Jobs\Utils\ElementLinkFactory;
class WPML_TM_REST_Jobs_Factory extends WPML_REST_Factory_Loader {
/**
* @return WPML_TM_REST_Jobs
*/
public function create() {
global $sitepress, $wpdb;
return new WPML_TM_REST_Jobs(
wpml_tm_get_jobs_repository( true, false, true ),
new WPML_TM_Rest_Jobs_Criteria_Parser(),
new WPML_TM_Rest_Jobs_View_Model(
new WPML_TM_Rest_Jobs_Translation_Service(),
new WPML_TM_Rest_Jobs_Element_Info(
new WPML_TM_Rest_Jobs_Package_Helper_Factory()
),
new WPML_TM_Rest_Jobs_Language_Names( $sitepress ),
new WPML_TM_Rest_Job_Translator_Name(),
new WPML_TM_Rest_Job_Progress(),
ElementLinkFactory::create()
),
new WPML_TP_Sync_Update_Job( $wpdb, $sitepress ),
new WPML_TM_Last_Picked_Up( $sitepress )
);
}
}