at path:
ROOT
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
off-canvas
/
tag.php
run:
R
W
Run
widgets
DIR
2025-12-13 10:18:36
R
W
Run
module.php
1.56 KB
2024-10-19 01:21:22
R
W
Run
Delete
Rename
tag.php
2.08 KB
2024-10-19 01:21:22
R
W
Run
Delete
Rename
error_log
up
📄
tag.php
Save
<?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' => $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() {} }