/home/suroeste/public_html/wp-content/plugins/elementor/includes/widgets
NameSizeModeActions
traits/-0755rm
accordion.php198430644editdlrm
alert.php134570644editdlrm
audio.php74900644editdlrm
button.php28470644editdlrm
common.php289570644editdlrm
counter.php172870644editdlrm
divider.php336700644editdlrm
google-maps.php66230644editdlrm
heading.php102560644editdlrm
html.php25460644editdlrm
icon-box.php215370644editdlrm
icon-list.php224640644editdlrm
icon.php127290644editdlrm
image-box.php177730644editdlrm
image-carousel.php270310644editdlrm
image-gallery.php108440644editdlrm
image.php193870644editdlrm
inner-section.php9170644editdlrm
menu-anchor.php36320644editdlrm
progress.php121080644editdlrm
rating.php75070644editdlrm
read-more.php32470644editdlrm
share-buttons.php10290644editdlrm
shortcode.php32710644editdlrm
sidebar.php29780644editdlrm
social-icons.php162040644editdlrm
spacer.php33280644editdlrm
star-rating.php132320644editdlrm
tabs.php166630644editdlrm
testimonial.php172600644editdlrm
text-editor.php123280644editdlrm
toggle.php200050644editdlrm
video.php346890644editdlrm
wordpress.php70510644editdlrm
Edit: /home/suroeste/public_html/wp-content/plugins/elementor/includes/widgets/shortcode.php (3271B)
start_controls_section( 'section_shortcode', [ 'label' => esc_html__( 'Shortcode', 'elementor' ), ] ); $this->add_control( 'shortcode', [ 'label' => esc_html__( 'Enter your shortcode', 'elementor' ), 'type' => Controls_Manager::TEXTAREA, 'dynamic' => [ 'active' => true, ], 'ai' => [ 'active' => false, ], 'placeholder' => '[gallery id="123" size="medium"]', 'default' => '', ] ); $this->end_controls_section(); } /** * Render shortcode widget output on the frontend. * * Written in PHP and used to generate the final HTML. * * @since 1.0.0 * @access protected */ protected function render() { $shortcode = $this->get_settings_for_display( 'shortcode' ); if ( empty( $shortcode ) ) { return; } $shortcode = do_shortcode( shortcode_unautop( $shortcode ) ); ?>
print_unescaped_setting( 'shortcode' ); } /** * Render shortcode widget output in the editor. * * Written as a Backbone JavaScript template and used to generate the live preview. * * @since 2.9.0 * @access protected */ protected function content_template() {} }