Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/jet-popup   php

Repository URL to install this package:

Version: 1.5.2 

/ compatibility / packages / wpml.php

<?php
/**
 * WPML compatibility package
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

if ( ! class_exists( 'Jet_Popup_WPML_Package' ) ) {

	class Jet_Popup_WPML_Package {

		public function __construct() {

			if ( class_exists( 'WPML_Elementor_Module_With_Items' ) ) {
				$this->load_wpml_integration_classes();
			}

			add_filter( 'wpml_elementor_widgets_to_translate',  array( $this, 'add_translatable_nodes' ) );
			add_filter( 'jet-popup/get_conditions/template_id', array( $this, 'set_translated_popup' ) );
		}

		/**
		 * Load wpml required files.
		 *
		 * @return void
		 */
		public function load_wpml_integration_classes(){
			require jet_popup()->plugin_path( 'includes/compatibility/packages/wpml/mailchimp.php' );
		}

		/**
		 * Set translated popup ID to show
		 *
		 * @param int|string $popup_id Popup ID
		 *
		 * @return int
		 */
		public function set_translated_popup( $popup_id ) {
			return apply_filters( 'wpml_object_id', $popup_id, get_post_type( $popup_id ), true );
		}

		/**
		 * Add translation strings
		 *
		 * @param  array $nodes
		 * @return array
		 */
		public function add_translatable_nodes( $nodes ) {

			$nodes['jet-popup-action-button'] = array(
				'conditions' => array(
					'widgetType' => 'jet-popup-action-button'
				),
				'fields' => array(
					array(
						'field'       => 'button_text',
						'type'        => esc_html__( 'Popup Action Button: Button text', 'jet-popup' ),
						'editor_type' => 'LINE',
					),
					array(
						'field'       => 'button_link',
						'type'        => esc_html__( 'Popup Action Button: Button Link', 'jet-popup' ),
						'editor_type' => 'LINK',
					),
				),
			);

			$nodes['jet-popup-mailchimp'] = array(
				'conditions' => array(
					'widgetType' => 'jet-popup-mailchimp'
				),
				'fields' => array(
					array(
						'field'       => 'redirect_url',
						'type'        => esc_html__( 'Mailchimp: Redirect Url', 'jet-popup' ),
						'editor_type' => 'LINE',
					),
					array(
						'field'       => 'email_label',
						'type'        => esc_html__( 'Mailchimp: E-Mail Label', 'jet-popup' ),
						'editor_type' => 'LINE',
					),
					array(
						'field'       => 'email_placeholder',
						'type'        => esc_html__( 'Mailchimp: E-Mail Placeholder', 'jet-popup' ),
						'editor_type' => 'LINE',
					),
					array(
						'field'       => 'submit_button_text',
						'type'        => esc_html__( 'Mailchimp: Submit Text', 'jet-popup' ),
						'editor_type' => 'LINK',
					),
				),
				'integration-class' => 'Jet_Popup_WPML_Mailchimp',
			);

			return $nodes;
		}

	}

}

new Jet_Popup_WPML_Package();