/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/sidebar.php (2978B)
$sidebar ) { $options[ $sidebar_id ] = $sidebar['name']; } } $default_key = array_keys( $options ); $default_key = array_shift( $default_key ); $this->start_controls_section( 'section_sidebar', [ 'label' => esc_html__( 'Sidebar', 'elementor' ), ] ); $this->add_control( 'sidebar', [ 'label' => esc_html__( 'Choose Sidebar', 'elementor' ), 'type' => Controls_Manager::SELECT, 'default' => $default_key, 'options' => $options, ] ); $this->end_controls_section(); } /** * Render sidebar widget output on the frontend. * * Written in PHP and used to generate the final HTML. * * @since 1.0.0 * @access protected */ protected function render() { $sidebar = $this->get_settings_for_display( 'sidebar' ); if ( empty( $sidebar ) ) { return; } dynamic_sidebar( $sidebar ); } /** * Render sidebar 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() {} /** * Render sidebar widget as plain content. * * Override the default render behavior, don't render sidebar content. * * @since 1.0.0 * @access public */ public function render_plain_content() {} }