first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?php
namespace WPML\TM\Jobs;
use WPML\Core\WP\App\Resources;
use WPML\LIB\WP\Hooks;
use WPML\UIPage;
class Loader implements \IWPML_Backend_Action {
public function add_hooks() {
if ( wpml_is_ajax() ) {
return;
}
if ( UIPage::isTMJobs( $_GET ) || UIPage::isTranslationQueue( $_GET ) ) {
Hooks::onAction( 'wp_loaded' )
->then( [ $this, 'getData' ] )
->then( Resources::enqueueApp( 'jobs' ) );
}
}
public function getData() {
$data = ( new \WPML_TM_Jobs_List_Script_Data() )->get();
$data = ( new \WPML_TM_Scripts_Factory() )->build_localize_script_data( $data );
return [
'name' => 'WPML_TM_SETTINGS',
'data' => $data,
];
}
}