99 lines
2.4 KiB
PHP
99 lines
2.4 KiB
PHP
<?php
|
|
namespace MEPPlugin\Widgets;
|
|
|
|
use Elementor\Widget_Base;
|
|
use Elementor\Controls_Manager;
|
|
use Elementor\Group_Control_Typography;
|
|
use Elementor\Core\Schemes\Typography;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
/**
|
|
* @since 1.1.0
|
|
*/
|
|
class MEPEventThumbnailtWidget extends Widget_Base {
|
|
|
|
public function get_name() {
|
|
return 'mep-event-thumb-widget';
|
|
}
|
|
|
|
public function get_title() {
|
|
return __( 'Event Feature Image', 'mage-eventpress' );
|
|
}
|
|
|
|
public function get_icon() {
|
|
return 'eicon-image';
|
|
}
|
|
|
|
public function get_categories() {
|
|
return [ 'mep-elementor-support' ];
|
|
}
|
|
|
|
protected function _register_controls() {
|
|
|
|
$this->start_controls_section(
|
|
'mep_event_city_list_settings',
|
|
[
|
|
'label' => __( 'Event Feature Image Settings', 'mage-eventpress' ),
|
|
'tab' => Controls_Manager::TAB_CONTENT,
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'mep_event_list',
|
|
[
|
|
'label' => __( 'Select Event', 'mage-eventpress' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => '0',
|
|
'options' => mep_elementor_get_events('None'),
|
|
]
|
|
);
|
|
|
|
|
|
$this->end_controls_section();
|
|
|
|
|
|
// $this->start_controls_section(
|
|
// 'mep_event_thumbnail_settings',
|
|
// [
|
|
// 'label' => __( 'Style Settings', 'mage-eventpress' ),
|
|
// 'tab' => Controls_Manager::TAB_CONTENT,
|
|
// ]
|
|
// );
|
|
// $this->add_group_control(
|
|
// Group_Control_Typography::get_type(),
|
|
// [
|
|
// 'name' => 'mep_title_typo',
|
|
// 'scheme' => Typography::TYPOGRAPHY_3,
|
|
// 'selector' => '{{WRAPPER}} .mep-elementor-widget-title h2',
|
|
// ]
|
|
// );
|
|
// $this->add_control(
|
|
// 'mep_event_title_color',
|
|
// [
|
|
// 'label' => __( 'Title Color', 'mage-eventpress' ),
|
|
// 'type' => Controls_Manager::COLOR,
|
|
// 'selectors' => [
|
|
// '{{WRAPPER}} .mep-elementor-widget-title h2' => 'color: {{VALUE}};',
|
|
// ],
|
|
// ]
|
|
// );
|
|
// $this->end_controls_section();
|
|
|
|
}
|
|
|
|
protected function render() {
|
|
global $post;
|
|
$settings = $this->get_settings_for_display();
|
|
$user_select_event = $settings['mep_event_list'];
|
|
$event_id = $user_select_event > 0 ? $user_select_event : $post->ID;
|
|
if (get_post_type($event_id) == 'mep_events') {
|
|
?>
|
|
<div class="mep-event-thumbnail mep-elementor-widget-thumb">
|
|
<h2><?php echo get_the_post_thumbnail( $event_id, 'full'); ?></h2>
|
|
</div>
|
|
<?php
|
|
}
|
|
}
|
|
}
|