舒舒服服水电费多少发多少*(^&*(
<?php
/**
* Sidebar element.
*
* @package Woodmart
*/
namespace XTS\Modules\Layouts;
use Elementor\Controls_Manager;
use Elementor\Plugin;
use Elementor\Widget_Base;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
/**
* Elementor widget that inserts an embeddable content into the page, from any given URL.
*/
class Sidebar extends Widget_Base {
/**
* Get widget name.
*
* @return string Widget name.
*/
public function get_name() {
return 'wd_sidebar';
}
/**
* Get widget content.
*
* @return string Widget title.
*/
public function get_title() {
return esc_html__( 'Sidebar', 'woodmart' );
}
/**
* Get widget icon.
*
* @return string Widget icon.
*/
public function get_icon() {
return 'wd-icon-sa-sidebar';
}
/**
* Get widget keywords.
*
* Retrieve the list of keywords the widget belongs to.
*
* @since 2.1.0
* @access public
*
* @return array Widget keywords.
*/
public function get_keywords() {
return array( 'off', 'canvas', 'sidebar' );
}
/**
* Get widget categories.
*
* @return array Widget categories.
*/
public function get_categories() {
return [ 'wd-elements' ];
}
/**
* Register the widget controls.
*/
protected function register_controls() {
global $wp_registered_sidebars;
$options = array();
if ( ! $wp_registered_sidebars ) {
$options[''] = esc_html__( 'No sidebars were found', 'woodmart' );
} else {
$options[''] = esc_html__( 'Choose Sidebar', 'woodmart' );
foreach ( $wp_registered_sidebars as $sidebar_id => $sidebar ) {
$options[ $sidebar_id ] = $sidebar['name'];
}
}
$default_key = array_keys( $options );
$default_key = array_shift( $default_key );
/**
* Content tab
*/
/**
* General settings
*/
$this->start_controls_section(
'general_content_section',
array(
'label' => esc_html__( 'General', 'woodmart' ),
'tab' => Controls_Manager::TAB_CONTENT,
)
);
$this->add_control(
'sidebar_name',
array(
'label' => esc_html__( 'Choose Sidebar', 'elementor' ),
'type' => Controls_Manager::SELECT,
'default' => $default_key,
'options' => $options,
)
);
$this->end_controls_section();
}
/**
* Render the widget output on the frontend.
*/
protected function render() {
$settings = wp_parse_args(
$this->get_settings_for_display(),
array(
'sidebar_name' => '',
)
);
dynamic_sidebar( $settings['sidebar_name'] );
}
}
Plugin::instance()->widgets_manager->register( new Sidebar() );