File "tag.php"

Full Path: /home/diablzlo/glucosebalnce.com/wp-content/plugins/elementor-pro/modules/off-canvas/tag.php
File size: 2.13 KB
MIME-type: text/x-php
Charset: utf-8

<?php
namespace ElementorPro\Modules\OffCanvas;

use Elementor\Controls_Manager;
use ElementorPro\Modules\DynamicTags\Tags\Base\Tag as DynamicTagsTag;
use ElementorPro\Modules\DynamicTags\Module as DynamicTagsModule;
use ElementorPro\Plugin;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class Tag extends DynamicTagsTag {

	public function get_name() {
		return 'off-canvas';
	}

	public function get_title() {
		return esc_html__( 'Off-Canvas', 'elementor-pro' );
	}

	public function get_group() {
		return DynamicTagsModule::ACTION_GROUP;
	}

	public function get_categories() {
		return [ DynamicTagsModule::URL_CATEGORY ];
	}

	public static function on_import_replace_dynamic_content( $config, $map_old_new_post_ids ) {
		if ( isset( $config['settings']['off_canvas'] ) ) {
			$config['settings']['off_canvas'] = $map_old_new_post_ids[ $config['settings']['off_canvas'] ];
		}

		return $config;
	}

	public function register_controls() {
		$this->add_control(
			'action',
			[
				'label' => esc_html__( 'Action', 'elementor-pro' ),
				'type' => Controls_Manager::SELECT,
				'default' => 'open',
				'options' => [
					'open' => esc_html__( 'Open Off-Canvas', 'elementor-pro' ),
					'close' => esc_html__( 'Close Off-Canvas', 'elementor-pro' ),
					'toggle' => esc_html__( 'Toggle Off-Canvas', 'elementor-pro' ),
				],
			]
		);

		$this->add_control(
			'off_canvas',
			[
				'label' => esc_html__( 'Choose Off-Canvas widget', 'elementor-pro' ),
				'type' => Controls_Manager::SELECT,
				'label_block' => true,
			]
		);
	}

	public function render() {
		$settings = $this->get_active_settings();

		if ( ! $settings['off_canvas'] ) {
			return;
		}

		$link_action_url = Plugin::elementor()->frontend->create_action_hash( 'off_canvas:' . $settings['action'], [
			'id' => apply_filters( 'elementor-pro/off-canvas/id', $settings['off_canvas'] ),
			'displayMode' => $settings['action'],
		] );

		// PHPCS - `create_action_hash` is safe.
		echo $link_action_url; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	}

	// Keep Empty to avoid default advanced section
	protected function register_advanced_section() {}
}