HEX
Server: Apache
System: Linux vps-cdc32557.vps.ovh.ca 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
User: hanode (1017)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/hanode/public_html/wp-content/plugins/wpml-translation-management/inc/js-scripts.php
<?php

/**
 * Registers scripts so that they can be reused throughout WPML plugins
 */
function wpml_tm_register_js_scripts() {
	wp_register_script(
		'wpml-tm-editor-templates',
		WPML_TM_URL . '/res/js/translation-editor/templates.js',
		array(),
		WPML_TM_VERSION,
		true
	);
	wp_register_script(
		'wpml-tm-editor-job',
		WPML_TM_URL . '/res/js/translation-editor/wpml-tm-editor-job.js',
		array( 'underscore', 'backbone' ),
		WPML_TM_VERSION,
		true
	);
	
	$scripts = array(
		'wpml-tm-editor-job-field-view',
		'wpml-tm-editor-job-basic-field-view',
		'wpml-tm-editor-job-single-line-field-view',
		'wpml-tm-editor-job-textarea-field-view',
		'wpml-tm-editor-job-wysiwyg-field-view',
		'wpml-tm-editor-field-view-factory',
		'wpml-tm-editor-section-view',
		'wpml-tm-editor-group-view',
		'wpml-tm-editor-image-view',
		'wpml-tm-editor-main-view',
		'wpml-tm-editor-header-view',
		'wpml-tm-editor-note-view',
		'wpml-tm-editor-footer-view',
		'wpml-tm-editor-languages-view',
		'wpml-tm-editor-copy-all-dialog',
		'wpml-tm-editor-edit-independently-dialog'
		);
	
	foreach( $scripts as $script ) {
		wp_register_script(
			$script,
			WPML_TM_URL . '/res/js/translation-editor/' . $script . '.js',
			array( 'wpml-tm-editor-job' ),
			WPML_TM_VERSION,
			true
		);
	}

	wp_register_script(
		'wpml-tm-editor-scripts',
		WPML_TM_URL . '/res/js/translation-editor/translation-editor.js',
		array_merge( array( 'jquery', 'jquery-ui-dialog', 'wpml-tm-editor-templates', 'wpml-tm-editor-job'), $scripts ),
		WPML_TM_VERSION,
		true
	);
	wp_register_script( 'wpml-tp-polling-box-populate',
		WPML_TM_URL . '/res/js/tp-polling/box-populate.js',
		array( 'jquery' ), WPML_TM_VERSION );
	wp_register_script( 'wpml-tp-polling',
		WPML_TM_URL . '/res/js/tp-polling/poll-for-translations.js',
		array( 'wpml-tp-polling-box-populate' ), WPML_TM_VERSION );
	wp_register_script( 'wpml-tp-polling-setup',
		WPML_TM_URL . '/res/js/tp-polling/box-setup.js',
		array( 'wpml-tp-polling' ), WPML_TM_VERSION );
	wp_register_script( 'wpml-tm-mcs',
		WPML_TM_URL . '/res/js/mcs/wpml-tm-mcs.js',
		array( 'wpml-tp-polling' ), WPML_TM_VERSION );
	wp_register_script( 'wpml-tm-mcs-translate-link-targets',
		WPML_TM_URL . '/res/js/mcs/wpml-tm-mcs-translate-link-targets.js',
		array(), WPML_TM_VERSION );
}

if ( is_admin() ) {
	add_action( 'admin_enqueue_scripts', 'wpml_tm_register_js_scripts' );
} else {
	add_action( 'wp_enqueue_scripts', 'wpml_tm_register_js_scripts' );
}