modern-events-calendar-lite/app/skins/slider.php

254 lines
12 KiB
PHP
Executable file

<?php
/** no direct access **/
defined('MECEXEC') or die();
/**
* Webnus MEC slider class.
* @author Webnus <info@webnus.net>
*/
class MEC_skin_slider extends MEC_skins
{
/**
* @var string
*/
public $skin = 'slider';
public $display_price;
public $display_available_tickets;
public $autoplay;
public $transition_time;
public $date_format_type1_1;
public $date_format_type1_2;
public $date_format_type1_3;
public $date_format_type2_1;
public $date_format_type2_2;
public $date_format_type2_3;
public $date_format_type3_1;
public $date_format_type3_2;
public $date_format_type3_3;
public $date_format_type4_1;
public $date_format_type4_2;
public $date_format_type4_3;
public $date_format_type5_1;
public $date_format_type5_2;
public $date_format_type5_3;
/**
* Constructor method
* @author Webnus <info@webnus.net>
*/
public function __construct()
{
parent::__construct();
}
/**
* Registers skin actions into WordPress
* @author Webnus <info@webnus.net>
*/
public function actions()
{
}
/**
* Initialize the skin
* @author Webnus <info@webnus.net>
* @param array $atts
*/
public function initialize($atts)
{
$this->atts = $atts;
// Skin Options
$this->skin_options = (isset($this->atts['sk-options']) and isset($this->atts['sk-options'][$this->skin])) ? $this->atts['sk-options'][$this->skin] : [];
// Icons
$this->icons = $this->main->icons(
isset($this->atts['icons']) && is_array($this->atts['icons']) ? $this->atts['icons'] : []
);
// Date Formats
$this->date_format_type1_1 = (isset($this->skin_options['type1_date_format1']) and trim($this->skin_options['type1_date_format1'])) ? $this->skin_options['type1_date_format1'] : 'd';
$this->date_format_type1_2 = (isset($this->skin_options['type1_date_format2']) and trim($this->skin_options['type1_date_format2'])) ? $this->skin_options['type1_date_format2'] : 'F';
$this->date_format_type1_3 = (isset($this->skin_options['type1_date_format3']) and trim($this->skin_options['type1_date_format3'])) ? $this->skin_options['type1_date_format3'] : 'l';
$this->date_format_type2_1 = (isset($this->skin_options['type2_date_format1']) and trim($this->skin_options['type2_date_format1'])) ? $this->skin_options['type2_date_format1'] : 'd';
$this->date_format_type2_2 = (isset($this->skin_options['type2_date_format2']) and trim($this->skin_options['type2_date_format2'])) ? $this->skin_options['type2_date_format2'] : 'F';
$this->date_format_type2_3 = (isset($this->skin_options['type2_date_format3']) and trim($this->skin_options['type2_date_format3'])) ? $this->skin_options['type2_date_format3'] : 'l';
$this->date_format_type3_1 = (isset($this->skin_options['type3_date_format1']) and trim($this->skin_options['type3_date_format1'])) ? $this->skin_options['type3_date_format1'] : 'd';
$this->date_format_type3_2 = (isset($this->skin_options['type3_date_format2']) and trim($this->skin_options['type3_date_format2'])) ? $this->skin_options['type3_date_format2'] : 'F';
$this->date_format_type3_3 = (isset($this->skin_options['type3_date_format3']) and trim($this->skin_options['type3_date_format3'])) ? $this->skin_options['type3_date_format3'] : 'l';
$this->date_format_type4_1 = (isset($this->skin_options['type4_date_format1']) and trim($this->skin_options['type4_date_format1'])) ? $this->skin_options['type4_date_format1'] : 'd';
$this->date_format_type4_2 = (isset($this->skin_options['type4_date_format2']) and trim($this->skin_options['type4_date_format2'])) ? $this->skin_options['type4_date_format2'] : 'F';
$this->date_format_type4_3 = (isset($this->skin_options['type4_date_format3']) and trim($this->skin_options['type4_date_format3'])) ? $this->skin_options['type4_date_format3'] : 'l';
$this->date_format_type5_1 = (isset($this->skin_options['type5_date_format1']) and trim($this->skin_options['type5_date_format1'])) ? $this->skin_options['type5_date_format1'] : 'd';
$this->date_format_type5_2 = (isset($this->skin_options['type5_date_format2']) and trim($this->skin_options['type5_date_format2'])) ? $this->skin_options['type5_date_format2'] : 'F';
$this->date_format_type5_3 = (isset($this->skin_options['type5_date_format3']) and trim($this->skin_options['type5_date_format3'])) ? $this->skin_options['type5_date_format3'] : 'l';
// Search Form Status
$this->sf_status = false;
// Generate an ID for the sking
$this->id = isset($this->atts['id']) ? $this->atts['id'] : mt_rand(100, 999);
// Set the ID
if(!isset($this->atts['id'])) $this->atts['id'] = $this->id;
// The style
$this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'type1';
if($this->style == 'fluent' and !is_plugin_active('mec-fluent-layouts/mec-fluent-layouts.php')) $this->style = 'type1';
// Autoplay Time
$this->autoplay = (isset($this->skin_options['autoplay']) and trim($this->skin_options['autoplay']) != '') ? $this->skin_options['autoplay'] : 3000;
// Transition Time
$this->transition_time = (isset($this->skin_options['transition_time']) and trim($this->skin_options['transition_time']) != '' and is_numeric($this->skin_options['transition_time'])) ? $this->skin_options['transition_time'] : 250;
// Override the style if the style forced by us in a widget etc
if(isset($this->atts['style']) and trim($this->atts['style']) != '') $this->style = $this->atts['style'];
// HTML class
$this->html_class = '';
if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
// From Widget
$this->widget = isset($this->atts['widget']) && trim($this->atts['widget']);
if($this->widget)
{
$this->skin_options['count'] = '1';
}
// Fluent view - Display Price
$this->display_price = (isset($this->skin_options['display_price']) and trim($this->skin_options['display_price'])) ? true : false;
// Fluent view - Available Tickets
$this->display_available_tickets = (isset($this->skin_options['display_available_tickets']) and trim($this->skin_options['display_available_tickets'])) ? $this->skin_options['display_available_tickets'] : '';
// The count in row
$this->count = isset($this->skin_options['count']) ? $this->skin_options['count'] : '3';
// Init MEC
$this->args['mec-init'] = true;
$this->args['mec-skin'] = $this->skin;
// Post Type
$this->args['post_type'] = $this->main->get_main_post_type();
// Post Status
$this->args['post_status'] = 'publish';
// Keyword Query
$this->args['s'] = $this->keyword_query();
// Taxonomy
$this->args['tax_query'] = $this->tax_query();
// Meta
$this->args['meta_query'] = $this->meta_query();
// Tag
if(apply_filters('mec_taxonomy_tag', '') === 'post_tag') $this->args['tag'] = $this->tag_query();
// Author
$this->args['author'] = $this->author_query();
$this->args['author__not_in'] = $this->author_query_ex();
// Pagination Options
$this->paged = get_query_var('paged', 1);
$this->limit = (isset($this->skin_options['limit']) and trim($this->skin_options['limit'])) ? $this->skin_options['limit'] : 12;
// reason_for_cancellation
$this->reason_for_cancellation = isset($this->skin_options['reason_for_cancellation']) ? $this->skin_options['reason_for_cancellation'] : false;
// display_label
$this->display_label = isset($this->skin_options['display_label']) ? $this->skin_options['display_label'] : false;
$this->args['posts_per_page'] = $this->limit;
$this->args['paged'] = $this->paged;
// Sort Options
$this->args['orderby'] = 'mec_start_day_seconds ID';
$this->args['order'] = 'ASC';
$this->args['meta_key'] = 'mec_start_day_seconds';
// Show Only Expired Events
$this->show_only_expired_events = (isset($this->atts['show_only_past_events']) and trim($this->atts['show_only_past_events'])) ? '1' : '0';
// Show Past Events
if($this->show_only_expired_events)
{
$this->atts['show_past_events'] = '1';
$this->args['order'] = 'DESC';
}
// Show Past Events
$this->args['mec-past-events'] = isset($this->atts['show_past_events']) ? $this->atts['show_past_events'] : '0';
// Start Date
$this->start_date = $this->get_start_date();
// We will extend the end date in the loop
$this->end_date = $this->start_date;
// Show Ongoing Events
$this->show_ongoing_events = (isset($this->atts['show_only_ongoing_events']) and trim($this->atts['show_only_ongoing_events'])) ? '1' : '0';
if($this->show_ongoing_events)
{
$this->args['mec-show-ongoing-events'] = $this->show_ongoing_events;
if((strpos($this->style, 'fluent') === false && strpos($this->style, 'liquid') === false))
{
$this->maximum_date = $this->start_date;
}
}
// Include Ongoing Events
$this->include_ongoing_events = (isset($this->atts['show_ongoing_events']) and trim($this->atts['show_ongoing_events'])) ? '1' : '0';
if($this->include_ongoing_events) $this->args['mec-include-ongoing-events'] = $this->include_ongoing_events;
// Apply Maximum Date
$apply_sf_date = isset($_REQUEST['apply_sf_date']) ? sanitize_text_field($_REQUEST['apply_sf_date']) : 0;
if($apply_sf_date == 1) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
// Found Events
$this->found = 0;
do_action('mec-slider-initialize-end', $this);
}
/**
* Returns start day of skin for filtering events
* @author Webnus <info@webnus.net>
* @return string
*/
public function get_start_date()
{
// Default date
$date = current_time('Y-m-d');
if(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'today') $date = current_time('Y-m-d');
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'tomorrow') $date = date('Y-m-d', strtotime('Tomorrow'));
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'yesterday') $date = date('Y-m-d', strtotime('Yesterday'));
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_last_month') $date = date('Y-m-d', strtotime('first day of last month'));
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_current_month') $date = date('Y-m-d', strtotime('first day of this month'));
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_next_month') $date = date('Y-m-d', strtotime('first day of next month'));
elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'date') $date = date('Y-m-d', strtotime($this->skin_options['start_date']));
// Hide past events
if(isset($this->atts['show_past_events']) and !trim($this->atts['show_past_events']))
{
$today = current_time('Y-m-d');
if(strtotime($date) < strtotime($today)) $date = $today;
}
// Show only expired events
if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
{
$now = date('Y-m-d H:i:s', current_time('timestamp', 0));
if(strtotime($date) > strtotime($now)) $date = $now;
}
return $date;
}
}