File "class-wishlist.php"
Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/themes/woodmart/inc/integrations/elementor/elements/class-wishlist.php
File size: 2.19 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Wishlist map
*
* @package xts
*/
namespace XTS\Elementor;
use Elementor\Controls_Manager;
use Elementor\Widget_Base;
use Elementor\Plugin;
use XTS\WC_Wishlist\Ui;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
/**
* Elementor widget that inserts an embeddable content into the page, from any given URL.
*
* @since 1.0.0
*/
class Wishlist extends Widget_Base {
/**
* Get widget name.
*
* @since 1.0.0
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'wd_wishlist';
}
/**
* Get widget title.
*
* @since 1.0.0
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return esc_html__( 'Wishlist content', 'woodmart' );
}
/**
* Get widget icon.
*
* @since 1.0.0
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'wd-icon-wishlist';
}
/**
* Get widget categories.
*
* @since 1.0.0
* @access public
*
* @return array Widget categories.
*/
public function get_categories() {
return [ 'wd-elements' ];
}
/**
* Register the widget controls.
*
* @since 1.0.0
* @access protected
*/
protected function register_controls() {
/**
* Content tab
*/
/**
* General settings
*/
$this->start_controls_section(
'general_content_section',
array(
'label' => esc_html__( 'General', 'woodmart' ),
)
);
$this->add_control(
'description',
array(
'raw' => esc_html__( 'This element is created for the wishlist page and you can find all its configuration in Theme Settings.', 'woodmart' ),
'type' => Controls_Manager::RAW_HTML,
'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
)
);
$this->end_controls_section();
}
/**
* Render the widget output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @since 1.0.0
*
* @access protected
*/
protected function render() {
if ( woodmart_woocommerce_installed() && class_exists( 'XTS\WC_Wishlist\UI' ) ) {
echo UI::get_instance()->wishlist_page();
}
}
}
Plugin::instance()->widgets_manager->register( new Wishlist() );