scripts_factory = $mcs_ate; } protected function initialize_steps() { $this->add_step( 'tm_translation_method', __( 'Translation Method', 'wpml-translation-management' ) ); $this->add_step( 'tm_translation_service', __( 'Translation Service', 'wpml-translation-management' ) ); $this->add_step( 'tm_local_translators', __( 'Local Translators', 'wpml-translation-management' ) ); $this->add_step( 'tm_translation_editor', __( 'Translation Editor', 'wpml-translation-management' ) ); $this->add_step( 'tm_summary', __( 'Summary', 'wpml-translation-management' ) ); $this->set_current_step( get_option( WPML_TM_Wizard_For_Manager_Options::CURRENT_STEP, self::INITIAL_STEP ) ); } /** * @throws \InvalidArgumentException */ protected function enqueue_scripts() { wp_register_script( 'wpml-tm-wizard', WPML_TM_URL . '/dist/js/wizard/app.js', array( 'wpml-wizard', 'wpml-tooltip' ), WPML_TM_VERSION, true ); $this->scripts_factory->localize_script( 'wpml-tm-wizard' ); $this->scripts_factory->register_otgs_notices(); wp_enqueue_style( 'otgs-notices' ); wp_enqueue_script( 'wpml-tm-wizard' ); wp_enqueue_style( 'wpml-tooltip' ); wp_register_style( 'wpml-tm-wizard', WPML_TM_URL . '/res/css/wpml-tm-wizard.css' ); wp_enqueue_style( 'wpml-tm-wizard' ); wp_enqueue_style( 'wpml-tm-ts-admin-section', WPML_TM_URL . '/res/css/admin-sections/translation-services.css', array(), WPML_TM_VERSION ); wp_enqueue_script( 'wpml-tm-ts-admin-section', WPML_TM_URL . '/res/js/translation-services.js', array(), WPML_TM_VERSION ); wp_enqueue_script( 'wpml-select-2', ICL_PLUGIN_URL . '/lib/select2/select2.min.js', array( 'jquery' ), ICL_SITEPRESS_VERSION, true ); wp_enqueue_script( 'wpml-tm-translation-roles-select2', WPML_TM_URL . '/res/js/translation-roles-select2.js', array(), WPML_TM_VERSION ); wp_enqueue_script( 'wpml-tm-set-translation-roles', WPML_TM_URL . '/res/js/set-translation-role.js', array(), WPML_TM_VERSION ); } }