Heray-Was-Here
Server : Apache
System : Linux hybrid3195.ca.ns.planethoster.net 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
User : alliancerealtynb ( 1004)
PHP Version : 7.4.33
Disable Function : noop
Directory :  /home/alliancerealtynb/wpml-translation-managementOLD/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/alliancerealtynb/wpml-translation-managementOLD/plugin.php
<?php
/**
 * Plugin Name: WPML Translation Management
 * Plugin URI: https://wpml.org/
 * Description: Add a complete translation process for WPML | <a href="https://wpml.org">Documentation</a> | <a href="https://wpml.org/version/translation-management-2-9-0/">WPML Translation Management 2.9.0 release notes</a>
 * Author: OnTheGoSystems
 * Author URI: http://www.onthegosystems.com/
 * Version: 2.9.0
 * Plugin Slug: wpml-translation-management
 *
 * @package WPML\TM
 */

if ( defined( 'WPML_TM_VERSION' ) || get_option( '_wpml_inactive' ) ) {
	return;
}

define( 'WPML_TM_VERSION', '2.9.0' );

// Do not uncomment the following line!
// If you need to use this constant, use it in the wp-config.php file
// define( 'WPML_TM_DEV_VERSION', '2.0.3-dev' );
if ( ! defined( 'WPML_TM_PATH' ) ) {
	define( 'WPML_TM_PATH', dirname( __FILE__ ) );
}

/**
 * Load plugin.
 *
 * @param SitePress $sitepress WPML main plugin instance.
 */
function wpml_tm_load( $sitepress = null ) {
	if ( ! class_exists( 'WPML_Core_Version_Check' ) ) {
		require_once WPML_TM_PATH . '/vendor/wpml-shared/wpml-lib-dependencies/src/dependencies/class-wpml-core-version-check.php';
	}

	if ( ! WPML_Core_Version_Check::is_ok( dirname( __FILE__ ) . '/wpml-dependencies.json' ) ) {
		wpml_tm_disable_dependent_plugins();
		return;
	}

	require_once WPML_TM_PATH . '/vendor/autoload.php';

	require_once WPML_TM_PATH . '/inc/constants.php';
	require_once WPML_TM_PATH . '/inc/translation-proxy/wpml-pro-translation.class.php';
	require_once WPML_TM_PATH . '/inc/functions-load.php';
	require_once WPML_TM_PATH . '/inc/js-scripts.php';
	require_once WPML_TM_PATH . '/inc/deprecated-hooks.php';

	new WPML_TM_Requirements();

	if ( ! $sitepress ) {
		global $sitepress;
	}

	if ( ! $sitepress || ! $sitepress instanceof SitePress || ! $sitepress->is_setup_complete() ) {
		return;
	}

	\WPML\Container\share( \WPML\TM\Container\Config::getSharedClasses() );
	\WPML\Container\delegate( \WPML\TM\Container\Config::getDelegated() );

	require_once WPML_TM_PATH . '/menu/dashboard/wpml-tm-dashboard.class.php';
	require_once WPML_TM_PATH . '/menu/wpml-tm-menus.class.php';

	$action_filter_loader = new WPML_Action_Filter_Loader();

	if ( version_compare( ICL_SITEPRESS_VERSION, '3.3.1', '>=' ) ) {
		// phpcs:disable WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase
		global $wpdb, $WPML_Translation_Management, $ICL_Pro_Translation;

		$WPML_Translation_Management = wpml_translation_management();
		$WPML_Translation_Management->init();
		$WPML_Translation_Management->load();

		if ( ! $ICL_Pro_Translation ) {
			$job_factory         = wpml_tm_load_job_factory();
			$ICL_Pro_Translation = new WPML_Pro_Translation( $job_factory );
		}

		if ( is_admin() ) {
			$wpml_wp_api      = new WPML_WP_API();
			$TranslationProxy = new WPML_Translation_Proxy_API();
			new WPML_TM_Troubleshooting_Reset_Pro_Trans_Config( $sitepress, $TranslationProxy, $wpml_wp_api, $wpdb );
			new WPML_TM_Troubleshooting_Clear_TS( $wpml_wp_api );
			new WPML_TM_Promotions( $wpml_wp_api );

			if ( defined( 'DOING_AJAX' ) ) {
				$wpml_tm_options_ajax = new WPML_TM_Options_Ajax( $sitepress );
				$wpml_tm_options_ajax->ajax_hooks();

				$wpml_tm_pickup_mode_ajax = new WPML_TM_Pickup_Mode_Ajax( $sitepress, $ICL_Pro_Translation );
				$wpml_tm_pickup_mode_ajax->ajax_hooks();
			}
		}
		// phpcs:disable WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase

		if ( class_exists( 'WPML_TF_Settings_Read' ) ) {
			$tf_settings_read = new WPML_TF_Settings_Read();
			/**
			 * Translation feedback settings.
			 *
			 * @var WPML_TF_Settings $tf_settings
			 */
			$tf_settings                 = $tf_settings_read->get( 'WPML_TF_Settings' );
			$translation_feedback_module = new WPML_TM_TF_Module( $action_filter_loader, $tf_settings );
			$translation_feedback_module->run();
		}

		$action_filter_loader->load(
			array(
				'WPML_TM_Jobs_Deadline_Estimate_AJAX_Action_Factory',
				'WPML_TM_Jobs_Deadline_Cron_Hooks_Factory',
				'WPML_TM_Emails_Settings_Factory',
				'WPML_TM_Jobs_Summary_Report_Hooks_Factory',
			)
		);
	}

	$actions = array(
		'WPML_TM_Translation_Services_Admin_Section_Resources_Factory',
		'WPML_TM_Translation_Services_Admin_Section_Ajax_Factory',
		'WPML_TM_Translation_Service_Authentication_Ajax_Factory',
		'WPML_TM_Translation_Services_Refresh_Services_Factory',
		'WPML_TM_Default_Settings_Factory',
		'WPML_TP_Lock_Notice_Factory',
		'WPML_TM_API_Hooks_Factory',
		'WPML_TM_Parent_Filter_Ajax_Factory',
		'WPML_TM_Upgrade_Loader_Factory',
		'WPML_TM_Translation_Priorities_Factory',
		'WPML_Translation_Roles_Ajax_Factory',
		'WPML_TM_Wizard_Steps_Factory',
		'WPML_TM_Translation_Basket_Hooks_Factory',
		'WPML_TM_Word_Count_Hooks_Factory',
		'WPML_TM_Admin_Menus_Factory',
		'WPML_TM_Privacy_Content_Factory',
		'WPML_TM_ATE_Translator_Login_Factory',
		'WPML_TM_Serialized_Custom_Field_Package_Handler_Factory',
		'WPML_TM_MCS_Pagination_Ajax_Factory',
		'WPML_TM_Shortcodes_Catcher_Factory',
		'WPML_TM_Disable_Notices_In_Wizard_Factory',
		'WPML_Translation_Jobs_Migration_Hooks_Factory',
		'WPML_TM_TS_Instructions_Hooks_Factory',
		'WPML_TM_Only_I_Language_Pairs_Factory',
		'WPML_TM_Post_Edit_TM_Editor_Select_Factory',
		'WPML_TM_Translation_Jobs_Fix_Summary_Factory',
		'WPML_TM_Troubleshooting_Fix_Translation_Jobs_TP_ID_Factory',
		\WPML\TM\Troubleshooting\SynchronizeSourceIdOfATEJobs\TriggerSynchronization::class,
		'WPML_TM_Reset_Options_Filter_Factory',
	);
	$action_filter_loader->load( $actions );

	$rest_actions = array(
		'WPML_TM_REST_ATE_Jobs_Factory',
		'WPML_TM_REST_XLIFF_Factory',
		'WPML_TM_REST_AMS_Clients_Factory',
		'WPML_TM_REST_ATE_API_Factory',
		'WPML_TM_REST_Jobs_Factory',
		'WPML_TM_REST_ATE_Public_Factory',
		'WPML_TM_REST_Settings_Translation_Editor_Factory',
		'WPML_TM_REST_TP_XLIFF_Factory',
		'WPML_TM_REST_Apply_TP_Translation_Factory',
		'WPML_TM_REST_Batch_Sync_Factory',
		'WPML_TM_REST_ATE_Sync_Jobs_Factory',
	);
	$action_filter_loader->load( $rest_actions );

	$ams_ate_actions = array(
		'WPML_TM_AMS_Synchronize_Actions_Factory',
		'WPML_TM_AMS_Synchronize_Users_On_Access_Denied_Factory',
		'WPML_TM_ATE_Jobs_Store_Actions_Factory',
		'WPML_TM_ATE_Jobs_Actions_Factory',
		'WPML_TM_ATE_Job_Data_Fallback_Factory',
		'WPML_TM_ATE_Post_Edit_Actions_Factory',
		'WPML_TM_ATE_Translator_Message_Classic_Editor_Factory',
		'WPML_TM_Old_Editor_Factory',
		'WPML_TM_AMS_Check_Website_ID_Factory',
	);
	$action_filter_loader->load( $ams_ate_actions );

	$after_ate_actions = array(
		'WPML_TM_All_Admins_To_Translation_Managers',
	);
	$action_filter_loader->load( $after_ate_actions );

	do_action( 'wpml_after_tm_loaded' );

	// This filter is documented WPML Core in classes/support/class-wpml-support-info-ui.php.
	add_filter( 'wpml_support_info_blocks', 'wpml_tm_support_info' );

}

add_action( 'wpml_loaded', 'wpml_tm_load', 10, 1 );

/**
 * Get support info.
 * This filter is documented WPML Core in classes/support/class-wpml-support-info-ui.php.
 *
 * @param array $blocks Support info blocks.
 *
 * @return array
 */
function wpml_tm_support_info( array $blocks ) {
	$support_info = new WPML_TM_Support_Info();

	$ui = new WPML_TM_Support_Info_Filter( $support_info );

	return $ui->filter_blocks( $blocks );
}


/**
 * Migration from ICL 2.0
 */
function wpml_tm_icl20_migration() {
	// @todo Remove `|| ( defined( 'WPML_TP_ICL_20_MIGRATION_OFF' ) && WPML_TP_ICL_20_MIGRATION_OFF )` after testing?
	if ( defined( 'WPML_TP_ICL_20_MIGRATION_OFF' ) && WPML_TP_ICL_20_MIGRATION_OFF ) {
		return;
	}

	global $sitepress;
	$loader = new WPML_TM_ICL20_Migration_Loader( $sitepress->get_wp_api(), new WPML_TM_ICL20_Migration_Factory() );
	$loader->run();
}

if ( ! empty( $GLOBALS['sitepress'] ) && is_admin() ) {
	add_action( 'wpml_tm_loaded', 'wpml_tm_icl20_migration' );
}

/**
 * WPML reset user options filter.
 *
 * @param array $options User options.
 *
 * @return array
 */
function wpml_tm_reset_user_options( array $options ) {
	$options[] = WPML_TM_Menus_Management::SKIP_TM_WIZARD_META_KEY;

	return $options;
}
add_filter( 'wpml_reset_user_options', 'wpml_tm_reset_user_options' );

function wpml_tm_disable_dependent_plugins() {
	global $woocommerce_wpml;
	if ( isset( $woocommerce_wpml ) ) {
		remove_action( 'wpml_loaded', array( $woocommerce_wpml, 'load' ) );
		remove_action( 'init', array( $woocommerce_wpml, 'init' ), 2 );
	}
}

Hry