PluginProbe
Elementor Website Builder – more than just a page builder / 3.25.7
Elementor Website Builder – more than just a page builder v3.25.7
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / includes / widgets / shortcode.php

shortcode.php in Elementor Website Builder – more than just a page builder 3.25.7, at includes/widgets/shortcode.php

166 lines 3.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor;
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit; // Exit if accessed directly.
6 }
7
8 /**
9 * Elementor shortcode widget.
10 *
11 * Elementor widget that insert any shortcodes into the page.
12 *
13 * @since 1.0.0
14 */
15 class Widget_Shortcode extends Widget_Base {
16
17 /**
18 * Get widget name.
19 *
20 * Retrieve shortcode widget name.
21 *
22 * @since 1.0.0
23 * @access public
24 *
25 * @return string Widget name.
26 */
27 public function get_name() {
28 return 'shortcode';
29 }
30
31 /**
32 * Get widget title.
33 *
34 * Retrieve shortcode widget title.
35 *
36 * @since 1.0.0
37 * @access public
38 *
39 * @return string Widget title.
40 */
41 public function get_title() {
42 return esc_html__( 'Shortcode', 'elementor' );
43 }
44
45 /**
46 * Get widget icon.
47 *
48 * Retrieve shortcode widget icon.
49 *
50 * @since 1.0.0
51 * @access public
52 *
53 * @return string Widget icon.
54 */
55 public function get_icon() {
56 return 'eicon-shortcode';
57 }
58
59 /**
60 * Get widget keywords.
61 *
62 * Retrieve the list of keywords the widget belongs to.
63 *
64 * @since 2.1.0
65 * @access public
66 *
67 * @return array Widget keywords.
68 */
69 public function get_keywords() {
70 return [ 'shortcode', 'code' ];
71 }
72
73 /**
74 * Whether the reload preview is required or not.
75 *
76 * Used to determine whether the reload preview is required.
77 *
78 * @since 1.0.0
79 * @access public
80 *
81 * @return bool Whether the reload preview is required.
82 */
83 public function is_reload_preview_required() {
84 return true;
85 }
86
87 /**
88 * Register shortcode widget controls.
89 *
90 * Adds different input fields to allow the user to change and customize the widget settings.
91 *
92 * @since 3.1.0
93 * @access protected
94 */
95 protected function register_controls() {
96 $this->start_controls_section(
97 'section_shortcode',
98 [
99 'label' => esc_html__( 'Shortcode', 'elementor' ),
100 ]
101 );
102
103 $this->add_control(
104 'shortcode',
105 [
106 'label' => esc_html__( 'Enter your shortcode', 'elementor' ),
107 'type' => Controls_Manager::TEXTAREA,
108 'dynamic' => [
109 'active' => true,
110 ],
111 'ai' => [
112 'active' => false,
113 ],
114 'placeholder' => '[gallery id="123" size="medium"]',
115 'default' => '',
116 ]
117 );
118
119 $this->end_controls_section();
120 }
121
122 /**
123 * Render shortcode widget output on the frontend.
124 *
125 * Written in PHP and used to generate the final HTML.
126 *
127 * @since 1.0.0
128 * @access protected
129 */
130 protected function render() {
131 $shortcode = $this->get_settings_for_display( 'shortcode' );
132
133 if ( empty( $shortcode ) ) {
134 return;
135 }
136
137 $shortcode = do_shortcode( shortcode_unautop( $shortcode ) );
138 ?>
139 <div class="elementor-shortcode"><?php echo $shortcode; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></div>
140 <?php
141 }
142
143 /**
144 * Render shortcode widget as plain content.
145 *
146 * Override the default behavior by printing the shortcode instead of rendering it.
147 *
148 * @since 1.0.0
149 * @access public
150 */
151 public function render_plain_content() {
152 // In plain mode, render without shortcode
153 $this->print_unescaped_setting( 'shortcode' );
154 }
155
156 /**
157 * Render shortcode widget output in the editor.
158 *
159 * Written as a Backbone JavaScript template and used to generate the live preview.
160 *
161 * @since 2.9.0
162 * @access protected
163 */
164 protected function content_template() {}
165 }
166