Files

2124 lines
95 KiB
PHP

<?php
/** no direct access **/
defined('MECEXEC') or die();
/**
* Webnus MEC class.
* @author Webnus <info@webnus.net>
*/
class MEC_feature_mec extends MEC_base
{
/**
* @var MEC_factory
*/
public $factory;
/**
* @var MEC_db
*/
public $db;
/**
* @var MEC_main
*/
public $main;
/**
* @var MEC_notifications
*/
public $notifications;
public $settings;
public $ml_settings;
public $page;
public $PT;
/**
* Constructor method
* @author Webnus <info@webnus.net>
*/
public function __construct()
{
// Import MEC Factory
$this->factory = $this->getFactory();
// Import MEC DB
$this->db = $this->getDB();
// Import MEC Main
$this->main = $this->getMain();
// Import MEC Notifications
$this->notifications = $this->getNotifications();
// MEC Settings
$this->settings = $this->main->get_settings();
// MEC Multilingual Settings
$this->ml_settings = $this->main->get_ml_settings();
}
/**
* Initialize calendars feature
* @author Webnus <info@webnus.net>
*/
public function init()
{
$this->factory->action('admin_menu', array($this, 'menus'));
$this->factory->action('admin_menu', array($this, 'support_menu'), 21);
$this->factory->action('init', array($this, 'register_post_type'));
$this->factory->action('add_meta_boxes', array($this, 'register_meta_boxes'), 1);
$this->factory->filter('post_row_actions', array($this, 'action_links'), 10, 2);
$this->factory->action('admin_init', array($this, 'duplicate_shortcode'));
$this->factory->action('parent_file', array($this, 'mec_parent_menu_highlight'));
$this->factory->action('submenu_file', array($this, 'mec_sub_menu_highlight'));
$this->factory->action('current_screen', array($this, 'booking_badge'));
$this->factory->action('current_screen', array($this, 'events_badge'));
// Google Maps API
$this->factory->filter('mec_gm_include', array($this, 'gm_include'));
$this->factory->filter('manage_mec_calendars_posts_columns', array($this, 'filter_columns'));
$this->factory->action('manage_mec_calendars_posts_custom_column', array($this, 'filter_columns_content'), 10, 2);
$this->factory->action('save_post', array($this, 'save_calendar'));
// BuddyPress Integration
$this->factory->action('mec_booking_confirmed', array($this->main, 'bp_add_activity'));
$this->factory->action('mec_booking_verified', array($this->main, 'bp_add_activity'));
$this->factory->action('bp_register_activity_actions', array($this->main, 'bp_register_activity_actions'));
$this->factory->action('bp_setup_nav', array($this->main, 'bp_add_profile_menu'));
// Mailchimp Integration
$this->factory->action('mec_booking_verified', array($this->main, 'mailchimp_add_subscriber'));
// Campaign Monitor Integration
$this->factory->action('mec_booking_verified', array($this->main, 'campaign_monitor_add_subscriber'));
// MailerLite Integration
$this->factory->action('mec_booking_verified', array($this->main, 'mailerlite_add_subscriber'));
// Constant Contact Integration
$this->factory->action('mec_booking_verified', array($this->main, 'constantcontact_add_subscriber'));
// Active Campaign Integration
$this->factory->action('mec_booking_verified', array($this->main, 'active_campaign_add_subscriber'));
// AWeber Integration
$this->factory->action('mec_booking_verified', array($this->main, 'aweber_add_subscriber'));
// MailPoet Integration
$this->factory->action('mec_booking_verified', array($this->main, 'mailpoet_add_subscriber'));
// Sendfox Integration
$this->factory->action('mec_booking_verified', array($this->main, 'sendfox_add_subscriber'));
$booking_notification_hook = 'mec_booking_completed';
if(isset($this->settings['notification_gdpr']) && $this->settings['notification_gdpr']) $booking_notification_hook = 'mec_booking_verified';
// MEC Notifications
$this->factory->action('mec_booking_completed', array($this->notifications, 'email_verification'));
$this->factory->action($booking_notification_hook, array($this->notifications, 'booking_notification'), 11);
$this->factory->action('mec_booking_completed', array($this->notifications, 'admin_notification'), 12);
$this->factory->action('mec_booking_confirmed', array($this->notifications, 'booking_confirmation'), 10, 2);
$this->factory->action('mec_booking_canceled', array($this->notifications, 'booking_cancellation'), 12);
$this->factory->action('mec_booking_rejected', array($this->notifications, 'booking_rejection'), 12);
$this->factory->action('mec_fes_added', array($this->notifications, 'new_event'), 50, 2);
$this->factory->action('mec_after_publish_admin_event', array($this->notifications, 'new_event'), 10, 2);
$this->factory->action('mec_event_published', array($this->notifications, 'user_event_publishing'), 10, 3);
$this->factory->action('mec_event_soldout', array($this->notifications, 'event_soldout'), 10, 2);
$this->factory->action('mec_booking_moved_notify', [$this->notifications, 'booking_moved'], 11);
$this->page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : 'MEC-settings';
// MEC Post Type Name
$this->PT = $this->main->get_main_post_type();
// Disable Block Editor
$gutenberg_status = (!isset($this->settings['gutenberg']) || (isset($this->settings['gutenberg']) && $this->settings['gutenberg']));
if($gutenberg_status)
{
$this->factory->filter('gutenberg_can_edit_post_type', array($this, 'gutenberg'), 10, 2);
$this->factory->filter('use_block_editor_for_post_type', array($this, 'gutenberg'), 10, 2);
}
// Export Settings
$this->factory->action('wp_ajax_download_settings', array($this, 'download_settings'));
// Import Settings
$this->factory->action('wp_ajax_import_settings', array($this, 'import_settings'));
// License Activation
$this->factory->action('wp_ajax_activate_license', array($this, 'activate_license'));
$this->factory->action('wp_ajax_revoke_license', array($this, 'revoke_license'));
// Close Notification
$this->factory->action('wp_ajax_close_notification', array($this, 'close_notification'));
// Close Custom Text Notification
$this->factory->action('wp_ajax_close_cmsg_notification', array($this, 'close_cmsg_notification'));
$this->factory->action('wp_ajax_close_cmsg_2_notification', array($this, 'close_cmsg_2_notification'));
// Occurrences Dropdown
$this->factory->action('wp_ajax_mec_occurrences_dropdown', array($this, 'dropdown'));
// Scheduler Cronjob
$schedule = $this->getSchedule();
$this->factory->action('mec_scheduler', array($schedule, 'cron'));
$syncSchedule = $this->getSyncSchedule();
$this->factory->action('mec_syncScheduler', array($syncSchedule, 'sync'));
// Dashboard Metaboxes
$this->factory->action('wp_dashboard_setup', array($this, 'dashboard_widgets'));
// Dashboard Metabox Total Booking ajax
$this->factory->action('wp_ajax_total-booking-get-reports',array($this, 'dashboard_widget_total_booking_ajax_handler'));
// Custom Capability Map
if(is_admin()) $this->factory->filter('map_meta_cap', array($this, 'map_meta_cap'), 10, 4);
// Protected Content Shortcode
if($this->getPRO()) $this->factory->shortcode('mec-only-booked-users', array($this, 'only_booked_users_content'));
// Assets Per Page
if(!function_exists('is_plugin_active')) include_once ABSPATH . 'wp-admin/includes/plugin.php';
$this->factory->filter('mec_include_frontend_assets', array($this, 'assets_per_page'));
if(isset($this->settings['assets_per_page_status']) and $this->settings['assets_per_page_status'])
{
$this->factory->action('add_meta_boxes', array($this, 'register_assets_per_page_meta_boxes'), 1);
$this->factory->action('save_post', array($this, 'assets_per_page_save_page'), 10, 2);
}
// SEO Title
$this->factory->filter('pre_get_document_title', array($this, 'page_title'), 1000);
// Event Latest Event Date Time
$this->factory->action('mec_save_event_data', function()
{
update_option('mec_latest_event_datetime', current_time('YmdHis'), false);
});
// Kses
MEC::import('app.libraries.kses');
$this->factory->filter('mec_kses_tags', array('MEC_kses', 'tags'), 10, 2);
$this->factory->filter('safe_style_css', array('MEC_kses', 'styles'));
// Upload
$this->factory->filter('upload_mimes', array($this, 'upload_mimes'));
// Download Debug Log File
$this->factory->action('admin_init', [$this, 'download_debug_log_file']);
// Database Setup
$this->factory->action('wp_ajax_mec_maintenance_reinstall', [$this, 'rerun_sql']);
}
/* Activate License */
public function activate_license()
{
if($this->getPRO())
{
// Current User is not Permitted
if(!current_user_can('manage_options')) $this->main->response(array('success'=>0, 'code'=>'ADMIN_ONLY'));
if(!wp_verify_nonce(sanitize_text_field($_REQUEST['nonce']), 'mec_settings_nonce')) exit();
$options = get_option('mec_options');
$options['product_name'] = sanitize_text_field($_REQUEST['content']['LicenseTypeJson']);
$options['purchase_code'] = sanitize_text_field($_REQUEST['content']['PurchaseCodeJson']);
$payload = [];
$verify = $this->plugin_activation_request($options);
if($verify && isset($verify->item_link))
{
$payload['message'] = esc_html__('success');
$payload['status'] = true;
$payload['button_text'] = esc_html__('revoke' , 'modern-events-calendar-lite');
update_option('mec_license_status', 'active');
$options['product_id'] = $verify->item_id;
}
else
{
$payload['message'] = esc_html__('Activation failed');
$payload['status'] = false;
$payload['button_text'] = esc_html__('submit' , 'modern-events-calendar-lite');
update_option('mec_license_status', 'faild');
}
update_option('mec_options', $options);
$payload = json_encode($payload);
echo MEC_kses::element($payload);
wp_die();
}
}
public function revoke_license()
{
if($this->getPRO())
{
$options = get_option('mec_options');
$options['product_name'] = '';
$options['purchase_code'] = '';
$options['product_id'] = '';
update_option('mec_options', $options);
$payload = json_encode(array('message'=> 'revoked' , 'status'=> true, 'button_text' => esc_html__('submit' , 'modern-events-calendar-lite')));
echo MEC_kses::element($payload);
wp_die();
}
}
// MEC activation request
public function plugin_activation_request($options)
{
$code = $options['purchase_code'];
$product_name = $options['product_name'];
$item_id = $options['product_id'];
$url = get_home_url();
if (!isset($code) || empty($code)) return;
$verify_url = MEC_API_ACTIVATION . '/activation/verify?category=mec&license=' . $code . '&url=' . $url . '&item_id=' . $item_id;
$JSON = wp_remote_retrieve_body(wp_remote_get($verify_url, array(
'body' => null,
'timeout' => '120',
'redirection' => '10',
'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36',
)));
if($JSON != ''){
$data = json_decode($JSON);
return $data;
}
else return false;
}
/* Download MEC settings */
public function download_settings()
{
// Current User is not Permitted
if(!current_user_can('mec_settings') and !current_user_can('administrator')) $this->main->response(array('success'=>0, 'code'=>'ADMIN_ONLY'));
if(!wp_verify_nonce(sanitize_text_field($_REQUEST['nonce']), 'mec_settings_download'))
{
exit();
}
$content = get_option('mec_options');
$content = json_encode($content, true);
header('Content-type: application/txt');
header('Content-Description: MEC Settings');
header('Content-Disposition: attachment; filename="mec_options_backup_' . date( 'd-m-Y' ) . '.json"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
print_r($content);
wp_die();
}
/* Close addons notification */
public function close_notification()
{
// Current User is not Permitted
if(!current_user_can('mec_settings') and !current_user_can('administrator')) $this->main->response(array('success'=>0, 'code'=>'ADMIN_ONLY'));
if(!wp_verify_nonce(sanitize_text_field($_REQUEST['nonce']), 'mec_settings_nonce')) exit();
update_option('mec_addons_notification_option', 'open');
wp_die();
}
/* Close addons notification */
public function close_cmsg_2_notification()
{
// Current User is not Permitted
if(!current_user_can('mec_settings') and !current_user_can('administrator')) $this->main->response(array('success'=>0, 'code'=>'ADMIN_ONLY'));
if(!wp_verify_nonce(sanitize_text_field($_REQUEST['nonce']), 'mec_settings_nonce')) exit();
update_option('mec_custom_msg_2_close_option', 'open');
wp_die();
}
/* Close addons notification */
public function close_cmsg_notification()
{
// Current User is not Permitted
if(!current_user_can('mec_settings') and !current_user_can('administrator')) $this->main->response(array('success'=>0, 'code'=>'ADMIN_ONLY'));
if(!wp_verify_nonce(sanitize_text_field($_REQUEST['nonce']), 'mec_settings_nonce')) exit();
update_option('mec_custom_msg_close_option', 'open');
wp_die();
}
/* Import MEC settings */
public function import_settings()
{
// Current User is not Permitted
if(!current_user_can('mec_settings') and !current_user_can('administrator')) $this->main->response(array('success'=>0, 'code'=>'ADMIN_ONLY'));
if(!wp_verify_nonce(sanitize_text_field($_REQUEST['nonce']), 'mec_settings_nonce')) exit();
$options = $this->main->sanitize_deep_array($_REQUEST['content']);
if($options == 'No-JSON')
{
echo '<div class="mec-message-import-error">' . esc_html__('Your option is not in JSON format. Please insert correct options in this field and try again.', 'modern-events-calendar-lite') . '</div>';
exit();
}
else
{
if(empty($options))
{
echo '<div class="mec-message-import-error">' . esc_html__('Your options field can not be empty!', 'modern-events-calendar-lite') . '</div>';
exit;
}
else
{
update_option('mec_options', $options);
echo '<div class="mec-message-import-success">' . esc_html__('Your options imported successfuly.', 'modern-events-calendar-lite') . '</div>';
}
}
wp_die();
}
/**
* highlighting menu when click on taxonomy
* @author Webnus <info@webnus.net>
* @param string $parent_file
* @return string
*/
public function mec_parent_menu_highlight($parent_file)
{
global $current_screen;
$taxonomy = $current_screen->taxonomy;
$post_type = $current_screen->post_type;
// Don't do amything if the post type is not our post type
if(!in_array($post_type, [
$this->PT,
$this->main->get_email_post_type(),
$this->main->get_certificate_post_type()
])) return $parent_file;
// Other Post Types
if($post_type === $this->main->get_email_post_type()) return 'mec-intro';
if($post_type === $this->main->get_certificate_post_type()) return 'mec-intro';
// Tag Taxonomy
$tag_taxonomy = apply_filters('mec_taxonomy_tag', '');
switch($taxonomy)
{
case 'mec_category':
case $tag_taxonomy:
case 'mec_label':
case 'mec_location':
case 'mec_organizer':
case 'mec_speaker':
case 'mec_sponsor':
$parent_file = 'mec-intro';
break;
default:
//nothing
break;
}
return $parent_file;
}
public function mec_sub_menu_highlight($submenu_file)
{
global $current_screen;
$taxonomy = $current_screen->taxonomy;
$post_type = $current_screen->post_type;
// Don't do amything if the post type is not our post type
if(!in_array($post_type, [
$this->PT,
$this->main->get_email_post_type(),
$this->main->get_certificate_post_type()
])) return $submenu_file;
// Other Post Types
if($post_type === $this->main->get_email_post_type()) return 'edit.php?post_type='.$post_type;
if($post_type === $this->main->get_certificate_post_type()) return 'edit.php?post_type='.$post_type;
// Tag Taxonomy
$tag_taxonomy = apply_filters('mec_taxonomy_tag', '');
switch($taxonomy)
{
case 'mec_category':
$submenu_file = 'edit-tags.php?taxonomy=mec_category&post_type='.$this->PT;
break;
case $tag_taxonomy:
$submenu_file = 'edit-tags.php?taxonomy='.$tag_taxonomy.'&post_type='.$this->PT;
break;
case 'mec_label':
$submenu_file = 'edit-tags.php?taxonomy=mec_label&post_type='.$this->PT;
break;
case 'mec_location':
$submenu_file = 'edit-tags.php?taxonomy=mec_location&post_type='.$this->PT;
break;
case 'mec_organizer':
$submenu_file = 'edit-tags.php?taxonomy=mec_organizer&post_type='.$this->PT;
break;
case 'mec_speaker':
$submenu_file = 'edit-tags.php?taxonomy=mec_speaker&post_type='.$this->PT;
break;
case 'mec_sponsor':
$submenu_file = 'edit-tags.php?taxonomy=mec_sponsor&post_type='.$this->PT;
break;
default:
//nothing
break;
}
return $submenu_file;
}
/**
* Add the support menu
* @author Webnus <info@webnus.net>
*/
public function support_menu()
{
add_submenu_page('mec-intro', esc_html__('MEC - Support', 'modern-events-calendar-lite'), esc_html__('Support', 'modern-events-calendar-lite'), 'manage_options', 'MEC-support', array($this, 'support_page'));
}
/**
* Add the calendars menu
* @author Webnus <info@webnus.net>
*/
public function menus()
{
global $submenu;
unset($submenu['mec-intro'][2]);
remove_menu_page('edit.php?post_type=mec-events');
remove_menu_page('edit.php?post_type=mec_calendars');
do_action('before_mec_submenu_action');
add_submenu_page('mec-intro', esc_html__('Add Event', 'modern-events-calendar-lite'), esc_html__('Add Event', 'modern-events-calendar-lite'), apply_filters( 'mec_menu_cap', 'edit_posts', 'add_event' ), 'post-new.php?post_type='.$this->PT);
add_submenu_page('mec-intro', esc_html__('Tags', 'modern-events-calendar-lite'), esc_html__('Tags', 'modern-events-calendar-lite'), apply_filters( 'mec_menu_cap', 'edit_others_posts', 'tags' ), 'edit-tags.php?taxonomy='.apply_filters('mec_taxonomy_tag', '').'&post_type='.$this->PT);
add_submenu_page('mec-intro', esc_html($this->main->m('taxonomy_categories', esc_html__('Categories', 'modern-events-calendar-lite'))), esc_html($this->main->m('taxonomy_categories', esc_html__('Categories', 'modern-events-calendar-lite'))), apply_filters( 'mec_menu_cap', 'edit_others_posts', 'categories' ), 'edit-tags.php?taxonomy=mec_category&post_type='.$this->PT);
add_submenu_page('mec-intro', esc_html($this->main->m('taxonomy_labels', esc_html__('Labels', 'modern-events-calendar-lite'))), esc_html($this->main->m('taxonomy_labels', esc_html__('Labels', 'modern-events-calendar-lite'))), apply_filters( 'mec_menu_cap', 'edit_others_posts', 'labels' ), 'edit-tags.php?taxonomy=mec_label&post_type='.$this->PT);
add_submenu_page('mec-intro', esc_html($this->main->m('taxonomy_locations', esc_html__('Locations', 'modern-events-calendar-lite'))), esc_html($this->main->m('taxonomy_locations', esc_html__('Locations', 'modern-events-calendar-lite'))), apply_filters( 'mec_menu_cap', 'edit_others_posts', 'locations' ), 'edit-tags.php?taxonomy=mec_location&post_type='.$this->PT);
// Organizers Menu
if(!isset($this->settings['organizers_status']) || $this->settings['organizers_status'])
{
add_submenu_page('mec-intro', esc_html($this->main->m('taxonomy_organizers', esc_html__('Organizers', 'modern-events-calendar-lite'))), esc_html($this->main->m('taxonomy_organizers', esc_html__('Organizers', 'modern-events-calendar-lite'))), apply_filters( 'mec_menu_cap', 'edit_others_posts', 'organizers' ), 'edit-tags.php?taxonomy=mec_organizer&post_type='.$this->PT);
}
// Speakers Menu
if(isset($this->settings['speakers_status']) and $this->settings['speakers_status'])
{
add_submenu_page('mec-intro', esc_html($this->main->m('taxonomy_speakers', esc_html__('Speakers', 'modern-events-calendar-lite'))), esc_html($this->main->m('taxonomy_speakers', esc_html__('Speakers', 'modern-events-calendar-lite'))), apply_filters( 'mec_menu_cap', 'edit_others_posts', 'speakers' ), 'edit-tags.php?taxonomy=mec_speaker&post_type='.$this->PT);
}
// Sponsors Menu
if($this->getPRO() and isset($this->settings['sponsors_status']) and $this->settings['sponsors_status'])
{
add_submenu_page('mec-intro', esc_html($this->main->m('taxonomy_sponsors', esc_html__('Sponsors', 'modern-events-calendar-lite'))), esc_html($this->main->m('taxonomy_sponsors', esc_html__('Sponsors', 'modern-events-calendar-lite'))), apply_filters( 'mec_menu_cap', 'edit_others_posts', 'sponsors' ), 'edit-tags.php?taxonomy=mec_sponsor&post_type='.$this->PT);
}
$capability = current_user_can('administrator') ? 'manage_options' : 'mec_shortcodes';
$capability = apply_filters( 'mec_menu_cap', $capability, 'shortcodes' );
add_submenu_page('mec-intro', esc_html__('Shortcodes', 'modern-events-calendar-lite'), esc_html__('Shortcodes', 'modern-events-calendar-lite'), $capability, 'edit.php?post_type=mec_calendars');
// Auto Email Menu
if($this->getPRO() and isset($this->settings['auto_emails_module_status']) and $this->settings['auto_emails_module_status'])
{
$capability = apply_filters( 'mec_menu_cap', 'manage_options', 'emails' );
add_submenu_page('mec-intro', esc_html__('Emails', 'modern-events-calendar-lite'), esc_html__('Emails', 'modern-events-calendar-lite'), $capability, 'edit.php?post_type=mec-emails');
}
// Certificates Menu
if($this->getPRO() and isset($this->settings['certificate_status']) and $this->settings['certificate_status'])
{
$capability = apply_filters( 'mec_menu_cap', 'manage_options', 'certificate' );
add_submenu_page('mec-intro', esc_html__('Certificates', 'modern-events-calendar-lite'), esc_html__('Certificates', 'modern-events-calendar-lite'), $capability, 'edit.php?post_type='.$this->main->get_certificate_post_type());
}
// Webhooks Menu
if(isset($this->settings['webhooks_status']) and $this->settings['webhooks_status'])
{
$capability = apply_filters( 'mec_menu_cap', 'manage_options', 'webhooks' );
add_submenu_page('mec-intro', esc_html__('Webhooks', 'modern-events-calendar-lite'), esc_html__('Webhooks', 'modern-events-calendar-lite'), $capability, 'edit.php?post_type=mec-webhooks');
}
$capability = (current_user_can('administrator') ? 'manage_options' : 'mec_settings');
add_submenu_page('mec-intro', esc_html__('MEC - Settings', 'modern-events-calendar-lite'), esc_html__('Settings', 'modern-events-calendar-lite'), apply_filters( 'mec_menu_cap', $capability, 'settings' ), 'MEC-settings', array($this, 'page'));
add_submenu_page('mec-intro', esc_html__('MEC - Addons', 'modern-events-calendar-lite'), esc_html__('Addons', 'modern-events-calendar-lite'), apply_filters( 'mec_menu_cap', 'manage_options', 'addons' ), 'MEC-addons', array($this, 'addons'));
add_submenu_page('mec-intro', esc_html__('MEC - Wizard', 'modern-events-calendar-lite'), esc_html__('Wizard', 'modern-events-calendar-lite'), apply_filters( 'mec_menu_cap', 'manage_options', 'wizard' ), 'MEC-wizard', array($this, 'setup_wizard'));
if(!$this->getPRO()) add_submenu_page('mec-intro', esc_html__('MEC - Go Pro', 'modern-events-calendar-lite'), esc_html__('Go Pro', 'modern-events-calendar-lite'), apply_filters( 'mec_menu_cap', 'manage_options', 'go_pro' ), 'MEC-go-pro', array($this, 'go_pro'));
do_action('after_mec_submenu_action');
}
/**
* Get Wizard page
* @author Webnus <info@webnus.net>
* @return void
*/
public function setup_wizard()
{
$this->display_wizard();
}
/**
* Show Wizard page
* @author Webnus <info@webnus.net>
* @return void
*/
public function display_wizard()
{
$path = MEC::import('app.features.mec.wizard', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Register post type of calendars/custom shortcodes
* @author Webnus <info@webnus.net>
*
*/
public function register_post_type()
{
$elementor = class_exists('MEC_Shortcode_Builder') && did_action('elementor/loaded') ? true : false;
register_post_type('mec_calendars',
array(
'labels'=>array
(
'name'=>__('Shortcodes', 'modern-events-calendar-lite'),
'singular_name'=>__('Shortcode', 'modern-events-calendar-lite'),
'add_new'=>__('Add Shortcode', 'modern-events-calendar-lite'),
'add_new_item'=>__('Add New Shortcode', 'modern-events-calendar-lite'),
'not_found'=>__('No shortcodes found!', 'modern-events-calendar-lite'),
'all_items'=>__('All Shortcodes', 'modern-events-calendar-lite'),
'edit_item'=>__('Edit shortcodes', 'modern-events-calendar-lite'),
'not_found_in_trash'=>__('No shortcodes found in Trash!', 'modern-events-calendar-lite')
),
'public'=>$elementor,
'show_in_nav_menus'=>false,
'show_in_admin_bar'=>$elementor,
'show_ui'=>true,
'has_archive'=>false,
'exclude_from_search'=>true,
'publicly_queryable'=>$elementor,
'show_in_menu'=>'mec-intro',
'supports'=>array('title'),
)
);
do_action('mec_register_post_type');
}
/**
* Filter columns of calendars/custom shortcodes
* @author Webnus <info@webnus.net>
* @param array $columns
* @return array
*/
public function filter_columns($columns)
{
$columns['shortcode'] = esc_html__('Shortcode', 'modern-events-calendar-lite');
return $columns;
}
/**
* Filter column content of calendars/custom shortcodes
* @author Webnus <info@webnus.net>
* @param string $column_name
* @param int $post_id
*/
public function filter_columns_content($column_name, $post_id)
{
if($column_name == 'shortcode')
{
echo '[MEC id="'.$post_id.'"]';
}
}
/**
* Register meta boxes of calendars/custom shortcodes
* @author Webnus <info@webnus.net>
*/
public function register_meta_boxes()
{
// Fix conflict between Ultimate GDPR and niceSelect
$screen = get_current_screen();
if ( $screen->id == 'mec_calendars' ) remove_all_actions('acf/input/admin_head');
add_meta_box('mec_calendar_display_options', esc_html__('Display Options', 'modern-events-calendar-lite'), array($this, 'meta_box_display_options'), 'mec_calendars', 'normal', 'high');
add_meta_box('mec_calendar_filter', esc_html__('Filter Options', 'modern-events-calendar-lite'), array($this, 'meta_box_filter'), 'mec_calendars', 'normal', 'high');
add_meta_box('mec_calendar_shortcode', esc_html__('Shortcode', 'modern-events-calendar-lite'), array($this, 'meta_box_shortcode'), 'mec_calendars', 'side');
add_meta_box('mec_calendar_search_form', esc_html__('Search Form', 'modern-events-calendar-lite'), array($this, 'meta_box_search_form'), 'mec_calendars', 'side');
add_meta_box('mec_calendar_icons', esc_html__('Icon Options', 'modern-events-calendar-lite'), [$this, 'meta_box_icons'], 'mec_calendars', 'normal', 'low');
}
public function action_links($actions, $post)
{
if($post->post_type != 'mec_calendars') return $actions;
// Editor and Higher
if(current_user_can('edit_post', $post->ID))
{
// Duplicate Button
$actions['mec-duplicate'] = '<a href="'.esc_url($this->main->add_qs_vars(array('mec-action'=>'duplicate-shortcode', 'id'=>$post->ID))).'">'.esc_html__('Duplicate', 'modern-events-calendar-lite').'</a>';
}
return $actions;
}
public function duplicate_shortcode()
{
// It's not a duplicate request
if(!isset($_GET['mec-action']) or (isset($_GET['mec-action']) and sanitize_text_field($_GET['mec-action']) != 'duplicate-shortcode')) return false;
// Shortcode ID to duplicate
$id = isset($_GET['id']) ? (int) sanitize_text_field($_GET['id']) : 0;
if(!$id) return false;
// Only editor and higher
if(!current_user_can('edit_post', $id)) return false;
// Duplicate Shortcode
$new_post_id = $this->main->duplicate_post($id);
wp_redirect('post.php?post=' . $new_post_id . '&action=edit');
exit;
}
/**
* Save calendars/custom shortcodes
* @author Webnus <info@webnus.net>
* @param int $post_id
* @return void
*/
public function save_calendar($post_id)
{
// Check if our nonce is set.
if(!isset($_POST['mec_calendar_nonce'])) return;
// Verify that the nonce is valid.
if(!wp_verify_nonce(sanitize_text_field($_POST['mec_calendar_nonce']), 'mec_calendar_data')) return;
// If this is an autosave, our form has not been submitted, so we don't want to do anything.
if(defined('DOING_AUTOSAVE') and DOING_AUTOSAVE) return;
$terms = isset($_POST['mec_tax_input']) ? $this->main->sanitize_deep_array($_POST['mec_tax_input']) : [];
$categories_arr = (isset($terms['mec_category']) and is_array($terms['mec_category'])) ? $terms['mec_category'] : [];
$ex_categories_arr = (isset($terms['mec_ex_category']) and is_array($terms['mec_ex_category'])) ? $terms['mec_ex_category'] : [];
foreach($ex_categories_arr as $ex_category)
{
$f = array_search($ex_category, $categories_arr);
if(is_numeric($f)) unset($categories_arr[$f]);
}
$categories = sanitize_text_field(implode(',', $categories_arr));
$ex_categories = sanitize_text_field(implode(',', $ex_categories_arr));
$locations_arr = (isset($terms['mec_location']) and is_array($terms['mec_location'])) ? $terms['mec_location'] : [];
$ex_locations_arr = (isset($terms['mec_ex_location']) and is_array($terms['mec_ex_location'])) ? $terms['mec_ex_location'] : [];
foreach($ex_locations_arr as $ex_location)
{
$f = array_search($ex_location, $locations_arr);
if(is_numeric($f)) unset($locations_arr[$f]);
}
$locations = sanitize_text_field(implode(',', $locations_arr));
$ex_locations = sanitize_text_field(implode(',', $ex_locations_arr));
$organizers_arr = (isset($terms['mec_organizer']) and is_array($terms['mec_organizer'])) ? $terms['mec_organizer'] : [];
$ex_organizers_arr = (isset($terms['mec_ex_organizer']) and is_array($terms['mec_ex_organizer'])) ? $terms['mec_ex_organizer'] : [];
foreach($ex_organizers_arr as $ex_organizer)
{
$f = array_search($ex_organizer, $organizers_arr);
if(is_numeric($f)) unset($organizers_arr[$f]);
}
$organizers = sanitize_text_field(implode(',', $organizers_arr));
$ex_organizers = sanitize_text_field(implode(',', $ex_organizers_arr));
$sponsors = (isset($terms['mec_sponsor']) and is_array($terms['mec_sponsor'])) ? sanitize_text_field(implode(',', $terms['mec_sponsor'])) : '';
$labels_arr = (isset($terms['mec_label']) and is_array($terms['mec_label'])) ? $terms['mec_label'] : [];
$ex_labels_arr = (isset($terms['mec_ex_labels']) and is_array($terms['mec_ex_labels'])) ? $terms['mec_ex_labels'] : [];
foreach($ex_labels_arr as $ex_label)
{
$f = array_search($ex_label, $labels_arr);
if(is_numeric($f)) unset($labels_arr[$f]);
}
$labels = sanitize_text_field(implode(',', $labels_arr));
$ex_labels = sanitize_text_field(implode(',', $ex_labels_arr));
$tags = isset($terms['mec_tag']) && is_array($terms['mec_tag']) ? $terms['mec_tag'] : [];
$ex_tags = isset($terms['mec_ex_tags']) && is_array($terms['mec_ex_tags']) ? $terms['mec_ex_tags'] : [];
$authors_arr = (isset($terms['mec_author']) and is_array($terms['mec_author'])) ? $terms['mec_author'] : [];
$ex_authors_arr = (isset($terms['mec_ex_authors']) and is_array($terms['mec_ex_authors'])) ? $terms['mec_ex_authors'] : [];
foreach($ex_authors_arr as $ex_author)
{
$f = array_search($ex_author, $authors_arr);
if(is_numeric($f)) unset($authors_arr[$f]);
}
$authors = sanitize_text_field(implode(',', $authors_arr));
$ex_authors = sanitize_text_field(implode(',', $ex_authors_arr));
// Fix tags
if(is_array($tags) and count($tags) == 1 and trim($tags[0]) == '') $tags = [];
if(is_array($tags))
{
$tags = array_map('trim', $tags);
$tags = implode(',', $tags);
}
// Fix Ex tags
if(is_array($ex_tags) and count($ex_tags) == 1 and trim($ex_tags[0]) == '') $ex_tags = [];
if(is_array($ex_tags))
{
$ex_tags = array_map('trim', $ex_tags);
$ex_tags = implode(',', $ex_tags);
}
update_post_meta($post_id, 'label', $labels);
update_post_meta($post_id, 'ex_label', $ex_labels);
update_post_meta($post_id, 'category', $categories);
update_post_meta($post_id, 'ex_category', $ex_categories);
update_post_meta($post_id, 'location', $locations);
update_post_meta($post_id, 'ex_location', $ex_locations);
update_post_meta($post_id, 'organizer', $organizers);
update_post_meta($post_id, 'ex_organizer', $ex_organizers);
update_post_meta($post_id, 'sponsor', $sponsors);
update_post_meta($post_id, 'tag', $tags);
update_post_meta($post_id, 'ex_tag', $ex_tags);
update_post_meta($post_id, 'author', $authors);
update_post_meta($post_id, 'ex_author', $ex_authors);
do_action('mec_shortcode_filters_save', $post_id, $terms );
$mec = (isset($_POST['mec']) ? $this->main->sanitize_deep_array($_POST['mec']) : array());
// Icons
$icons = isset($mec['icons']) && is_array($mec['icons']) ? $mec['icons'] : [];
update_post_meta($post_id, 'mec_icons', $icons);
$skin = (isset($mec['skin']) ? sanitize_text_field($mec['skin']) : '');
$start_date_type = ((isset($mec['sk-options'][$skin]) and isset($mec['sk-options'][$skin]['start_date_type'])) ? sanitize_text_field($mec['sk-options'][$skin]['start_date_type']) : 'today');
$end_date_type = ((isset($mec['sk-options'][$skin]) and isset($mec['sk-options'][$skin]['end_date_type'])) ? sanitize_text_field($mec['sk-options'][$skin]['end_date_type']) : 'date');
$ongoing = ((isset($mec['show_only_ongoing_events']) and $mec['show_only_ongoing_events']) ? 1 : 0);
// Set start date to Today because of showing ongoing events
if($ongoing and in_array($skin, array('list', 'grid', 'agenda', 'timeline'))) $mec['sk-options'][$skin]['start_date_type'] = 'today';
// Enable "Show Past Events" option since the start date is past
elseif(in_array($start_date_type, array('yesterday', 'start_last_year', 'start_last_month', 'start_last_week'))) $mec['show_past_events'] = 1;
// Set date filter type to dropdown because of skin
if(!in_array($skin, array('list', 'grid', 'agenda', 'timeline', 'map', 'custom')) and $mec['sf-options'][$skin]['month_filter']['type'] == 'date-range-picker') $mec['sf-options'][$skin]['month_filter']['type'] = 'dropdown';
// Enable Descending Order
if($start_date_type === 'date' and $end_date_type === 'date' and isset($mec['sk-options'][$skin]) and isset($mec['sk-options'][$skin]['start_date']) and isset($mec['sk-options'][$skin]['maximum_date_range']) and trim($mec['sk-options'][$skin]['start_date']) and trim($mec['sk-options'][$skin]['maximum_date_range']) and strtotime($mec['sk-options'][$skin]['start_date']) > strtotime($mec['sk-options'][$skin]['maximum_date_range'])) $mec['sk-options'][$skin]['order_method'] = 'DESC';
foreach($mec as $key=>$value) update_post_meta($post_id, $key, $value);
}
/**
* Show content of filter meta box
* @author Webnus <info@webnus.net>
* @param object $post
*/
public function meta_box_filter($post)
{
$path = MEC::import('app.features.mec.meta_boxes.filter', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of shortcode meta box
* @author Webnus <info@webnus.net>
* @param object $post
*/
public function meta_box_shortcode($post)
{
$path = MEC::import('app.features.mec.meta_boxes.shortcode', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of search form meta box
* @author Webnus <info@webnus.net>
* @param object $post
*/
public function meta_box_search_form($post)
{
$path = MEC::import('app.features.mec.meta_boxes.search_form', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of display options meta box
* @author Webnus <info@webnus.net>
* @param object $post
*/
public function meta_box_display_options($post)
{
$path = MEC::import('app.features.mec.meta_boxes.display_options', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of skin options meta box
* @author Webnus <info@webnus.net>
* @param object $post
*/
public function meta_box_skin_options($post)
{
$path = MEC::import('app.features.mec.meta_boxes.skin_options', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of icons meta box
* @author Webnus <info@webnus.net>
* @param object $post
*/
public function meta_box_icons($post)
{
$path = MEC::import('app.features.mec.meta_boxes.icons', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Get Addons page
* @author Webnus <info@webnus.net>
* @return void
*/
public function go_pro()
{
$this->display_go_pro();
}
/**
* Show go_pro page
* @author Webnus <info@webnus.net>
* @return void
*/
public function display_go_pro()
{
$path = MEC::import('app.features.mec.go-pro', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Get Addons page
* @author Webnus <info@webnus.net>
* @return void
*/
public function addons()
{
$this->display_addons();
}
/**
* Show Addons page
* @author Webnus <info@webnus.net>
* @return void
*/
public function display_addons()
{
$path = MEC::import('app.features.mec.addons', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show support page
* @author Webnus <info@webnus.net>
* @return void
*/
public function display_support()
{
$path = MEC::import('app.features.mec.support-page', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* support page
* @author Webnus <info@webnus.net>
* @return void
*/
public function support_page()
{
$this->display_support();
}
/**
* Show content settings menu
* @author Webnus <info@webnus.net>
* @return void
*/
public function page()
{
$tab = isset($_GET['tab']) ? sanitize_text_field($_GET['tab']) : 'MEC-settings';
if($tab == 'MEC-customcss') $this->styles();
elseif($tab == 'MEC-ie') $this->import_export();
elseif($tab == 'MEC-notifications') $this->notifications();
elseif($tab == 'MEC-messages') $this->messages();
elseif($tab == 'MEC-styling') $this->styling();
elseif($tab == 'MEC-single') $this->single();
elseif($tab == 'MEC-fes') $this->fes();
elseif($tab == 'MEC-booking') $this->booking();
elseif($tab == 'MEC-modules') $this->modules();
elseif($tab == 'MEC-integrations') $this->integrations();
elseif (apply_filters('mec_is_custom_settings',false,$tab)){
do_action('mec_display_settings_page',$tab);
}
else $this->settings();
}
/**
* Show content of settings tab
* @author Webnus <info@webnus.net>
* @return void
*/
public function settings()
{
$path = MEC::import('app.features.mec.settings', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of styles tab
* @author Webnus <info@webnus.net>
* @return void
*/
public function styles()
{
$path = MEC::import('app.features.mec.styles', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of styling tab
* @author Webnus <info@webnus.net>
* @return void
*/
public function styling()
{
$path = MEC::import('app.features.mec.styling', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of single tab
* @author Webnus <info@webnus.net>
* @return void
*/
public function single()
{
$path = MEC::import('app.features.mec.single', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of Frontend Event Submission tab
* @author Webnus <info@webnus.net>
* @return void
*/
public function fes()
{
$path = MEC::import('app.features.mec.fes', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of booking tab
* @author Webnus <info@webnus.net>
* @return void
*/
public function booking()
{
$path = MEC::import('app.features.mec.booking', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of modules tab
* @author Webnus <info@webnus.net>
* @return void
*/
public function modules()
{
$path = MEC::import('app.features.mec.modules', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of import/export tab
* @author Webnus <info@webnus.net>
* @return void
*/
public function import_export()
{
$path = MEC::import('app.features.mec.ie', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of notifications tab
* @author Webnus <info@webnus.net>
* @return void
*/
public function notifications()
{
$path = MEC::import('app.features.mec.notifications', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of messages tab
* @author Webnus <info@webnus.net>
* @return void
*/
public function messages()
{
$path = MEC::import('app.features.mec.messages', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Show content of integrations tab
* @author Webnus <info@webnus.net>
* @return void
*/
public function integrations()
{
$path = MEC::import('app.features.mec.integrations', true, true);
ob_start();
include $path;
echo MEC_kses::full(ob_get_clean());
}
/**
* Whether to include google map library
* @author Webnus <info@webnus.net>
* @param boolean $gm_include
* @return boolean
*/
public function gm_include($gm_include)
{
// Don't include the library if google Maps API is set to don't load
if(isset($this->settings['google_maps_dont_load_api']) and $this->settings['google_maps_dont_load_api']) return false;
return $gm_include;
}
/**
* Single Event Display Method
* @param string $skin
* @param int $value
* @param int $image_popup
* @return string
*/
public function sed_method_field($skin, $value = 0, $image_popup = 0)
{
$image_popup_html = '<div class="mec-form-row mec-image-popup-wrap mec-switcher">
<div class="mec-col-4">
<label for="mec_skin_'.esc_attr($skin).'_image_popup">'.esc_html__('Display content\'s images as Popup', 'modern-events-calendar-lite').'</label>
</div>
<div class="mec-col-4">
<input type="hidden" name="mec[sk-options]['.esc_attr($skin).'][image_popup]" value="0" />
<input type="checkbox" name="mec[sk-options]['.esc_attr($skin).'][image_popup]" id="mec_skin_'.esc_attr($skin).'_image_popup" value="1" ';
if($image_popup == 1 or $image_popup == 'on') $image_popup_html .= ' checked="checked"';
$image_popup_html .= '/><label for="mec_skin_'.esc_attr($skin).'_image_popup"></label>
</div>
</div>';
return '<div class="mec-form-row mec-sed-method-wrap">
<div class="mec-col-4">
<label for="mec_skin_'.esc_attr($skin).'_sed_method">'.esc_html__('Single Event Display Method', 'modern-events-calendar-lite').'</label>
</div>
<div class="mec-col-8">
<input type="hidden" name="mec[sk-options]['.esc_attr($skin).'][sed_method]" value="'.esc_attr($value).'" id="mec_skin_'.esc_attr($skin).'_sed_method_field" />
<ul class="mec-sed-methods" data-for="#mec_skin_'.esc_attr($skin).'_sed_method_field">
<li data-method="0" class="'.(!$value ? 'active' : '').'"><a href="#mec_skin_'.esc_attr($skin).'_sed_method_field">'.esc_html__('Current Window', 'modern-events-calendar-lite').'</a></li>
<li data-method="new" class="'.($value === 'new' ? 'active' : '').'"><a href="#mec_skin_'.esc_attr($skin).'_sed_method_field">'.esc_html__('New Window', 'modern-events-calendar-lite').'</a></li>
<li data-method="m1" class="'.($value === 'm1' ? 'active' : '').'"><a href="#mec_skin_'.esc_attr($skin).'_sed_method_field">'.esc_html__('Modal Popup', 'modern-events-calendar-lite').'</a></li>
<li data-method="no" class="'.($value === 'no' ? 'active' : '').'"><a href="#mec_skin_'.esc_attr($skin).'_sed_method_field">'.esc_html__('Disable Link', 'modern-events-calendar-lite').'</a></li>
</ul>
</div>
</div>' . MEC_kses::form($image_popup_html);
}
public function order_method_field($skin, $value = 'ASC', $key = 'order_method')
{
return '<div class="mec-form-row mec-switcher">
<div class="mec-col-4">
<label for="mec_skin_'.esc_attr($skin).'_'.esc_attr($key).'">'.esc_html__('Descending Order', 'modern-events-calendar-lite').'</label>
</div>
<div class="mec-col-4">
<input type="hidden" name="mec[sk-options]['.esc_attr($skin).']['.esc_attr($key).']" value="ASC" />
<input type="checkbox" name="mec[sk-options]['.esc_attr($skin).']['.esc_attr($key).']" id="mec_skin_'.esc_attr($skin).'_'.esc_attr($key).'" value="DESC" '.($value == 'DESC' ? 'checked="checked"' : '').' /><label for="mec_skin_'.esc_attr($skin).'_'.esc_attr($key).'"></label>
<span class="mec-tooltip">
<div class="box right">
<h5 class="title">'.esc_html__('Descending Order', 'modern-events-calendar-lite').'</h5>
<div class="content"><p>'.esc_html__('Enable this option to sort events in descending order.', 'modern-events-calendar-lite').'</p></div>
</div>
<i title="" class="dashicons-before dashicons-editor-help"></i>
</span>
</div>
</div>';
}
public function booking_button_field($skin, $value = 0)
{
$booking_status = (!isset($this->settings['booking_status']) or (isset($this->settings['booking_status']) and !$this->settings['booking_status'])) ? false : true;
if(!$booking_status) return '';
return '<div class="mec-form-row mec-booking-button-wrap mec-switcher mec-not-list-liquid mec-not-grid-liquid mec-not-daily_view-liquid mec-not-full_calendar-liquid">
<div class="mec-col-4">
<label for="mec_skin_'.esc_attr($skin).'_booking_button">'.esc_html__('Booking Button / Icon', 'modern-events-calendar-lite').'</label>
</div>
<div class="mec-col-4">
<input type="hidden" name="mec[sk-options]['.esc_attr($skin).'][booking_button]" value="0" />
<input type="checkbox" name="mec[sk-options]['.esc_attr($skin).'][booking_button]" id="mec_skin_'.esc_attr($skin).'_booking_button" value="1" '.($value == '1' ? 'checked="checked"' : '').' /><label for="mec_skin_'.esc_attr($skin).'_booking_button"></label>
<span class="mec-tooltip">
<div class="box right">
<h5 class="title">'.esc_html__('Booking Button / Icon', 'modern-events-calendar-lite').'</h5>
<div class="content"><p>'.esc_html__('Enable this option to display booking button / icon in this shortcode.', 'modern-events-calendar-lite').'</p></div>
</div>
<i title="" class="dashicons-before dashicons-editor-help"></i>
</span>
</div>
</div>';
}
public function display_organizer_field($skin, $value = 0)
{
return '<div class="mec-form-row mec-display-organizer-wrap mec-switcher mec-not-grid-liquid mec-not-daily_view-liquid">
<div class="mec-col-4">
<label for="mec_skin_'.esc_attr($skin).'_display_organizer">'.esc_html__('Display Organizers', 'modern-events-calendar-lite').'</label>
</div>
<div class="mec-col-4">
<input type="hidden" name="mec[sk-options]['.esc_attr($skin).'][display_organizer]" value="0" />
<input type="checkbox" name="mec[sk-options]['.esc_attr($skin).'][display_organizer]" id="mec_skin_'.esc_attr($skin).'_display_organizer" value="1" '.($value == '1' ? 'checked="checked"' : '').' /><label for="mec_skin_'.esc_attr($skin).'_display_organizer"></label>
<span class="mec-tooltip">
<div class="box right">
<h5 class="title">'.esc_html__('Display Organizers', 'modern-events-calendar-lite').'</h5>
<div class="content"><p>'.esc_html__('Enable this option to display events organizers in this shortcode.', 'modern-events-calendar-lite').'</p></div>
</div>
<i title="" class="dashicons-before dashicons-editor-help"></i>
</span>
</div>
</div>';
}
public function display_custom_data_field($skin, $value = 0)
{
return '<div class="mec-form-row mec-display-organizer-wrap mec-switcher mec-not-list-liquid mec-not-grid-liquid mec-not-daily_view-liquid mec-not-full_calendar-liquid">
<div class="mec-col-4">
<label for="mec_skin_'.esc_attr($skin).'_custom_data">'.esc_html__('Display Custom Fields', 'modern-events-calendar-lite').'</label>
</div>
<div class="mec-col-4">
<input type="hidden" name="mec[sk-options]['.esc_attr($skin).'][custom_data]" value="0" />
<input type="checkbox" name="mec[sk-options]['.esc_attr($skin).'][custom_data]" id="mec_skin_'.esc_attr($skin).'_custom_data" value="1" '.($value == '1' ? 'checked="checked"' : '').' /><label for="mec_skin_'.esc_attr($skin).'_custom_data"></label>
<span class="mec-tooltip">
<div class="box right">
<h5 class="title">'.esc_html__('Display Custom Fields', 'modern-events-calendar-lite').'</h5>
<div class="content"><p>'.esc_html__('Enable this option to display events custom data in this shortcode.', 'modern-events-calendar-lite').'</p></div>
</div>
<i title="" class="dashicons-before dashicons-editor-help"></i>
</span>
</div>
</div>';
}
public function display_pagination_field($skin, $options = [])
{
$value = isset($options['pagination']) ? (string) $options['pagination'] : '';
// Legacy Option
if(trim($value) === '' and isset($options['load_more_button'])) $value = $options['load_more_button'] ? 'loadmore' : '0';
return '<div class="mec-form-row mec-event-pagination-container mec-switcher mec-not-'.esc_attr($skin).'-liquid">
<div class="mec-col-4">
<label for="mec_skin_'.esc_attr($skin).'_pagination">'.esc_html__('Pagination Method', 'modern-events-calendar-lite').'</label>
</div>
<div class="mec-col-4">
<select name="mec[sk-options]['.esc_attr($skin).'][pagination]" id="mec_skin_'.esc_attr($skin).'_pagination">
<option value="loadmore" '.($value === 'loadmore' ? 'selected' : '').'>'.esc_html__('Load More Button', 'modern-events-calendar-lite').'</option>
<option value="scroll" '.($value === 'scroll' ? 'selected' : '').'>'.esc_html__('Infinite Scroll', 'modern-events-calendar-lite').'</option>
<option value="nextprev" '.($value === 'nextprev' ? 'selected' : '').'>'.esc_html__('Next / Prev', 'modern-events-calendar-lite').'</option>
<option value="0" '.($value === '0' ? 'selected' : '').'>'.esc_html__('Disabled', 'modern-events-calendar-lite').'</option>
</select>
</div>
</div>';
}
public function display_price_field($skin, $value = 0)
{
return ($skin === 'full_calendar' ? '<p class="description mec-not-full_calendar-liquid">'.esc_html__("The price shows in List View and Tile View.", 'modern-events-calendar-lite').'</p>' : '').'
<div class="mec-form-row mec-event-price-container mec-switcher mec-not-'.esc_attr($skin).'-liquid">
<div class="mec-col-4">
<label for="mec_skin_'.esc_attr($skin).'_display_price">'.esc_html__('Display Event Price', 'modern-events-calendar-lite').'</label>
</div>
<div class="mec-col-4">
<input type="hidden" name="mec[sk-options]['.esc_attr($skin).'][display_price]" value="0" />
<input type="checkbox" name="mec[sk-options]['.esc_attr($skin).'][display_price]" id="mec_skin_'.esc_attr($skin).'_display_price" value="1" '.($value == '1' ? 'checked="checked"' : '').' />
<label for="mec_skin_'.esc_attr($skin).'_display_price"></label>
<span class="mec-tooltip">
<div class="box right">
<h5 class="title">'.esc_html__('Display Event Price', 'modern-events-calendar-lite').'</h5>
<div class="content"><p>'.esc_html__('Enable this option to display events price in this shortcode.', 'modern-events-calendar-lite').'</p></div>
</div>
<i title="" class="dashicons-before dashicons-editor-help"></i>
</span>
</div>
</div>';
}
public function display_status_bar_field($skin, $value = 0)
{
return '<div class="mec-form-row mec-switcher mec-status-bar-display-wrapper mec-util-hidden" id="mec_skin_'.esc_attr($skin).'_display_status_bar_field">
<div class="mec-col-4">
<label for="mec_skin_'.esc_attr($skin).'_status_bar">'.esc_html__('Display Status Bar', 'modern-events-calendar-lite').'</label>
</div>
<div class="mec-col-4">
<input type="hidden" name="mec[sk-options]['.esc_attr($skin).'][status_bar]" value="0" />
<input type="checkbox" name="mec[sk-options]['.esc_attr($skin).'][status_bar]" id="mec_skin_'.esc_attr($skin).'_status_bar" value="1" '.($value == '1' ? 'checked="checked"' : '').' /><label for="mec_skin_'.esc_attr($skin).'_status_bar"></label>
<span class="mec-tooltip">
<div class="box right">
<h5 class="title">'.esc_html__('Display Organizers', 'modern-events-calendar-lite').'</h5>
<div class="content"><p>'.esc_html__('Enable this option to display the status bar in this shortcode.', 'modern-events-calendar-lite').'</p></div>
</div>
<i title="" class="dashicons-before dashicons-editor-help"></i>
</span>
</div>
</div>';
}
public function display_progress_bar_field($skin, $value)
{
// Module is not enabled
if(!isset($this->settings['progress_bar_status']) or (isset($this->settings['progress_bar_status']) and !$this->settings['progress_bar_status'])) return '';
return '<div class="mec-form-row mec-switcher mec-progress-bar-display-wrapper mec-util-hidden" id="mec_skin_'.esc_attr($skin).'_display_progress_bar_field">
<div class="mec-col-4">
<label for="mec_skin_'.esc_attr($skin).'_display_progress_bar">'.esc_html__('Display Progress Bar (Ongoing Events)', 'modern-events-calendar-lite').'</label>
</div>
<div class="mec-col-4">
<input type="hidden" name="mec[sk-options]['.esc_attr($skin).'][display_progress_bar]" value="0" />
<input type="checkbox" name="mec[sk-options]['.esc_attr($skin).'][display_progress_bar]" id="mec_skin_'.esc_attr($skin).'_display_progress_bar" value="1" '.($value ? 'checked="checked"' : '').' />
<label for="mec_skin_'.esc_attr($skin).'_display_progress_bar"></label>
</div>
</div>';
}
public function display_detailed_time_field($skin, $value = 0)
{
return '<div class="mec-form-row mec-switcher mec-not-daily_view-liquid">
<div class="mec-col-4">
<label for="mec_skin_'.esc_attr($skin).'_detailed_time">'.esc_html__('Detailed Time', 'modern-events-calendar-lite').'</label>
<span>'.esc_html__('For Multiple Day Events', 'modern-events-calendar-lite').'</span>
</div>
<div class="mec-col-4">
<input type="hidden" name="mec[sk-options]['.esc_attr($skin).'][detailed_time]" value="0" />
<input type="checkbox" name="mec[sk-options]['.esc_attr($skin).'][detailed_time]" id="mec_skin_'.esc_attr($skin).'_detailed_time" value="1" '.($value == '1' ? 'checked="checked"' : '').' /><label for="mec_skin_'.esc_attr($skin).'_detailed_time"></label>
</div>
</div>';
}
/**
* Disable Gutenberg Editor for MEC Post Types
* @param boolean $status
* @param string $post_type
* @return bool
*/
public function gutenberg($status, $post_type)
{
if(in_array($post_type, array($this->PT, $this->main->get_book_post_type(), $this->main->get_shortcode_post_type()))) return false;
return $status;
}
/**
* Show Booking Badge.
* @param object $screen
* @return void
*/
public function booking_badge($screen)
{
$user_id = get_current_user_id();
$user_last_view_date = get_user_meta($user_id, 'user_last_view_date', true);
if(!trim($user_last_view_date))
{
update_user_meta($user_id, 'user_last_view_date', date('YmdHis', current_time('timestamp', 0)));
return;
}
$latest_booking_datetime = get_option('mec_latest_booking_datetime');
if($latest_booking_datetime and (int) $latest_booking_datetime <= (int) $user_last_view_date) return;
$args = array(
'post_type' => $this->main->get_book_post_type(),
'post_status' => 'any',
'meta_query' => array(
array(
'key' => 'mec_book_date_submit',
'value' => $user_last_view_date,
'compare' => '>=',
),
),
);
$count = 0;
$query = new WP_Query($args);
if($query->have_posts())
{
while($query->have_posts())
{
$query->the_post();
$count += 1;
}
}
wp_reset_postdata();
if($count != 0)
{
// Append Booking Badge To Booking Menu.
global $menu;
$badge = ' <span class="update-plugins count-%%count%%"><span class="plugin-count">%%count%%</span></span>';
$menu_item = wp_list_filter($menu, array(2 =>'edit.php?post_type='.$this->main->get_book_post_type()));
if(is_array($menu_item) and count($menu_item))
{
$menu[key($menu_item)][0] .= str_replace('%%count%%', esc_attr($count), $badge);
}
}
if(isset($screen->id) and $screen->id == 'edit-mec-books')
{
update_user_meta($user_id, 'user_last_view_date', date('YmdHis', current_time('timestamp', 0)));
return;
}
}
/**
* Show Events Badge.
* @param object $screen
* @return void
*/
public function events_badge($screen)
{
if(!current_user_can('administrator') and !current_user_can('editor')) return;
$user_id = get_current_user_id();
$user_last_view_date_events = get_user_meta($user_id, 'user_last_view_date_events', true);
if(!trim($user_last_view_date_events))
{
update_user_meta($user_id, 'user_last_view_date_events', date('YmdHis', current_time('timestamp', 0)));
return;
}
$latest_event_datetime = get_option('mec_latest_event_datetime');
if($latest_event_datetime and (int) $latest_event_datetime <= (int) $user_last_view_date_events) return;
$args = array(
'post_type' => $this->main->get_main_post_type(),
'post_status' => 'any',
'meta_query' => array(
array(
'key' => 'mec_event_date_submit',
'value' => $user_last_view_date_events,
'compare' => '>=',
),
),
);
$count = 0;
$query = new WP_Query($args);
if($query->have_posts())
{
while($query->have_posts())
{
$query->the_post();
$count += 1;
}
}
wp_reset_postdata();
if($count != 0)
{
// Append Events Badge To Event Menu.
global $menu;
$badge = ' <span class="update-plugins count-%%count%%"><span class="plugin-count">%%count%%</span></span>';
$menu_item = wp_list_filter($menu, array(2 =>'mec-intro'));
if(is_array($menu_item) and count($menu_item))
{
$menu[key($menu_item)][0] .= str_replace('%%count%%', esc_attr($count), $badge);
}
}
if(isset($screen->id) and $screen->id == 'edit-mec-events')
{
update_user_meta($user_id, 'user_last_view_date_events', date('YmdHis', current_time('timestamp', 0)));
return;
}
}
/**
* Add MEC metaboxes in WordPress dashboard
* @author Webnus <info@webnus.net>
*/
public function dashboard_widgets()
{
wp_add_dashboard_widget(
'mec_widget_news_features',
esc_html__('Modern Events Calendar', 'modern-events-calendar-lite'),
array($this, 'widget_news')
);
if($this->getPRO() and current_user_can('mec_settings') and isset($this->settings['booking_status']) and $this->settings['booking_status'])
{
wp_add_dashboard_widget(
'mec_widget_total_bookings',
esc_html__('Total Bookings', 'modern-events-calendar-lite'),
array($this, 'widget_total_bookings')
);
}
}
/**
* MEC render metabox in WordPress dashboard
* @author Webnus <info@webnus.net>
*/
public function widget_news()
{
// Head Section
echo '<div class="mec-metabox-head-wrap">
<div class="mec-metabox-head-version">
<img src="'.plugin_dir_url(__FILE__ ) . '../../assets/img/ico-mec-vc.png" />
<p>'.($this->getPRO() ? esc_html__('Modern Events Calendar', 'modern-events-calendar-lite') : esc_html__('Modern Events Calendar (Lite)', 'modern-events-calendar-lite')).'</p>
<a href="'.esc_html__(admin_url( 'post-new.php?post_type=mec-events' )).'" class="button"><span aria-hidden="true" class="dashicons dashicons-plus"></span> Create New Event</a>
</div>
<div class="mec-metabox-head-button"></div>
<div style="clear:both"></div>
</div>';
// Upcoming Events
$upcoming_events = $this->main->get_upcoming_events(3);
echo '<div class="mec-metabox-upcoming-wrap"><h3 class="mec-metabox-feed-head">'.esc_html__('Upcoming Events', 'modern-events-calendar-lite').'</h3><ul>';
foreach($upcoming_events as $date => $content)
{
foreach($content as $array_id => $event)
{
$location_id = $this->main->get_master_location_id($event);
$event_title = $event->data->title;
$event_link = $event->data->permalink;
$event_date = $this->main->date_i18n(get_option('date_format'), $event->date['start']['date']);
$location = get_term($location_id, 'mec_location');
$locationName = '';
if(isset($location->name)) $locationName = $location->name;
echo '<li>
<span aria-hidden="true" class="dashicons dashicons-calendar-alt"></span>
<div class="mec-metabox-upcoming-event">
<a href="'.esc_url($event_link).'" target="">'.esc_html($event_title).'</a>
<div class="mec-metabox-upcoming-event-location">'.esc_html($locationName).'</div>
</div>
<div class="mec-metabox-upcoming-event-date">'.esc_html($event_date).'</div>
<div style="clear:both"></div>
</li>';
}
}
echo '</ul></div>';
$mec_get_webnus_news_time = get_option('mec_get_webnus_news_time');
if(!isset($mec_get_webnus_news_time) || !$mec_get_webnus_news_time)
{
$data_url = wp_remote_get( 'https://webnus.net/wp-json/wninfo/v1/posts', ['user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36']);
$obj = ((is_array($data_url) and isset($data_url['body'])) ? json_decode($data_url['body']) : '');
update_option('mec_get_webnus_news_time', date("Y-m-d"));
update_option('mec_get_webnus_news_html', $obj);
}
else
{
if(strtotime(date("Y-m-d")) > strtotime($mec_get_webnus_news_time))
{
$data_url = wp_remote_get( 'https://webnus.net/wp-json/wninfo/v1/posts', ['user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36']);
$obj = ((is_array($data_url) and isset($data_url['body'])) ? json_decode($data_url['body']) : '');
update_option('mec_get_webnus_news_time', date("Y-m-d"));
update_option('mec_get_webnus_news_html', $obj);
}
else
{
$obj = get_option('mec_get_webnus_news_html');
}
}
// News
if(!empty($obj))
{
echo '<h3 class="mec-metabox-feed-head">'.esc_html__('News & Updates', 'modern-events-calendar-lite').'</h3><div class="mec-metabox-feed-content"><ul>';
foreach($obj as $key => $value)
{
echo '<li>
<a href="'.esc_url($value->link).'" target="_blank">'.esc_html($value->title).'</a>
<p>'.esc_html($value->content).'</p>
</li>';
}
echo '</ul></div>';
}
// Links
echo '<div class="mec-metabox-footer"><a href="https://webnus.net/blog/" target="_blank">'.esc_html__('Blog', 'modern-events-calendar-lite').'<span aria-hidden="true" class="dashicons dashicons-external"></span></a><a href="https://webnus.net/dox/modern-events-calendar/" target="_blank">'.esc_html__('Help', 'modern-events-calendar-lite').'<span aria-hidden="true" class="dashicons dashicons-external"></span></a>';
if($this->getPRO()) echo '<a href="https://webnus.net/mec-purchase" target="_blank">'.esc_html__('Go Pro', 'modern-events-calendar-lite').'<span aria-hidden="true" class="dashicons dashicons-external"></span></a>';
echo '</div>';
}
public function dashboard_widget_total_booking_ajax_handler()
{
$start = isset($_REQUEST['start']) ? sanitize_text_field($_REQUEST['start']) : date('Y-m-d', strtotime('-15 days'));
$end = isset($_REQUEST['end']) ? sanitize_text_field($_REQUEST['end']) : date('Y-m-d');
$type = isset($_REQUEST['type']) ? sanitize_text_field($_REQUEST['type']) : 'daily';
$chart = isset($_REQUEST['chart']) ? sanitize_text_field($_REQUEST['chart']) : 'bar';
ob_start();
$this->display_total_booking_chart($start, $end, $type, $chart);
$r = ob_get_clean();
wp_send_json($r);
}
public function display_total_booking_chart($start, $end, $type = 'daily', $chart = 'bar')
{
$start = (!empty($start) ? $start : date('Y-m-d', strtotime('-15 days')));
$end = (!empty($end) ? $end : date('Y-m-d'));
$periods = $this->main->get_date_periods($start, $end, $type);
$stats = '';
$labels = '';
foreach($periods as $period)
{
$post_type = $this->main->get_book_post_type();
$posts_ids = $this->db->select("SELECT `ID` FROM `#__posts` WHERE `post_type`='".$post_type."' AND `post_date`>='".$period['start']."' AND `post_date`<='".$period['end']."'", 'loadColumn');
if(count($posts_ids)) $total_sells = $this->db->select("SELECT SUM(`meta_value`) FROM `#__postmeta` WHERE `meta_key`='mec_price' AND `post_id` IN (".implode(',', $posts_ids).")", 'loadResult');
else $total_sells = 0;
$labels .= '"'.$period['label'].'",';
$stats .= $total_sells.',';
}
$currency = $this->main->get_currency_sign();
echo '<canvas id="mec_total_bookings_chart" width="600" height="300"></canvas>';
echo '<script>
jQuery(document).ready(function()
{
var ctx = document.getElementById("mec_total_bookings_chart");
var mecSellsChart = new Chart(ctx,
{
type: "'.esc_js($chart).'",
data:
{
labels: ['.trim($labels, ', ').'],
datasets: [
{
label: "'.esc_js(sprintf(esc_html__('Total Sales (%s)', 'modern-events-calendar-lite'), $currency)).'",
data: ['.trim($stats, ', ').'],
backgroundColor: "rgba(159, 216, 255, 0.3)",
borderColor: "#36A2EB",
borderWidth: 1
}]
}
});
});
</script>';
}
public function widget_total_bookings()
{
$current_page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : 'dashboard';
wp_enqueue_script('mec-chartjs-script');
wp_enqueue_script('mec-total-booking-reports-script', $this->main->asset('js/total-booking-reports.js'));
wp_localize_script('mec-total-booking-reports-script','mec_ajax_data', array(
'ajaxurl' => admin_url('admin-ajax.php'),
));
?>
<div class="w-row <?php echo (($current_page == 'dashboard') ? 'mec-dashboard-widget-total-bookings' : ''); ?>">
<div class="w-col-sm-12">
<div class="w-box total-bookings">
<div class="w-box-head">
<?php echo esc_html__('Total Bookings', 'modern-events-calendar-lite'); ?>
</div>
<div class="w-box-content">
<ul>
<li class="mec-chart-this-month"><a href="<?php echo esc_url(add_query_arg(array(
'sort' => 'this_month',
'start' => date('Y-m-01'),
'end' => date('Y-m-t'),
'type' => 'daily',
))); ?>"><?php esc_html_e('This Month', 'modern-events-calendar-lite'); ?></a></li>
<li class="mec-chart-last-month"><a href="<?php echo esc_url(add_query_arg(array(
'sort' => 'last_month',
'start' => date('Y-m-01', strtotime('-1 Month')),
'end' => date('Y-m-t', strtotime('-1 Month')),
'type' => 'daily',
))); ?>"><?php esc_html_e('Last Month', 'modern-events-calendar-lite'); ?></a></li>
<li class="mec-chart-this-year"><a href="<?php echo esc_url(add_query_arg(array(
'sort' => 'this_year',
'start' => date('Y-01-01'),
'end' => date('Y-12-31'),
'type' => 'monthly',
))); ?>"><?php esc_html_e('This Year', 'modern-events-calendar-lite'); ?></a></li>
<li class="mec-chart-last-year"><a href="<?php echo esc_url(add_query_arg(array(
'sort' => 'last_year',
'start' => date('Y-01-01', strtotime('-1 Year')),
'end' => date('Y-12-31', strtotime('-1 Year')),
'type' => 'monthly',
))); ?>"><?php esc_html_e('Last Year', 'modern-events-calendar-lite'); ?></a></li>
</ul>
<script>
</script>
<?php
$start = date('Y-m-d', strtotime('-15 days'));
$end = date('Y-m-d');
$type = 'daily';
$chart = 'bar';
?>
<form class="mec-sells-filter" method="GET" action="">
<?php if($current_page != 'dashboard'): ?><input type="hidden" name="page" value="mec-intro" /><?php endif; ?>
<input type="text" class="mec_date_picker" name="start" placeholder="<?php esc_attr_e('Start Date', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($start); ?>" />
<input type="text" class="mec_date_picker" name="end" placeholder="<?php esc_attr_e('End Date', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($end); ?>" />
<select name="type">
<option value="daily" <?php echo ($type == 'daily' ? 'selected="selected"' : ''); ?>><?php esc_html_e('Daily', 'modern-events-calendar-lite'); ?></option>
<option value="monthly" <?php echo ($type == 'monthly' ? 'selected="selected"' : ''); ?>><?php esc_html_e('Monthly', 'modern-events-calendar-lite'); ?></option>
<option value="yearly" <?php echo ($type == 'yearly' ? 'selected="selected"' : ''); ?>><?php esc_html_e('Yearly', 'modern-events-calendar-lite'); ?></option>
</select>
<select name="chart">
<option value="bar" <?php echo ($chart == 'bar' ? 'selected="selected"' : ''); ?>><?php esc_html_e('Bar', 'modern-events-calendar-lite'); ?></option>
<option value="line" <?php echo ($chart == 'line' ? 'selected="selected"' : ''); ?>><?php esc_html_e('Line', 'modern-events-calendar-lite'); ?></option>
</select>
<button type="submit"><?php esc_html_e('Filter', 'modern-events-calendar-lite'); ?></button>
</form>
<div id="mec-total-booking-report">
<?php
$this->display_total_booking_chart($start,$end,$type,$chart);
?>
</div>
</div>
</div>
</div>
</div>
<?php
}
public function widget_print()
{
$start_year = $min_start_year = $this->db->select("SELECT MIN(cast(meta_value as unsigned)) AS date FROM `#__postmeta` WHERE `meta_key`='mec_start_date'", 'loadResult');
$end_year = $max_end_year = $this->db->select("SELECT MAX(cast(meta_value as unsigned)) AS date FROM `#__postmeta` WHERE `meta_key`='mec_end_date'", 'loadResult');
$current_month = current_time('m');
?>
<div class="w-row">
<div class="w-col-sm-12">
<div class="w-box total-bookings print-events">
<div class="w-box-head">
<?php echo esc_html__('Print Calendar', 'modern-events-calendar-lite'); ?>
</div>
<div class="w-box-content">
<form method="GET" action="<?php echo home_url(); ?>" target="_blank">
<input type="hidden" name="method" value="mec-print">
<select name="mec-year" title="<?php esc_attr('Year', 'modern-events-calendar-lite'); ?>">
<?php for($i = $start_year; $i <= $end_year; $i++): ?>
<option value="<?php echo esc_attr($i); ?>" <?php echo ($i == date('Y', current_time('timestamp', 0))) ? 'selected="selected"' : ''; ?>><?php echo esc_html($i); ?></option>
<?php endfor; ?>
</select>
<select name="mec-month" title="<?php esc_attr('Month', 'modern-events-calendar-lite'); ?>">
<?php for($i = 1; $i <= 12; $i++): ?>
<option value="<?php echo ($i < 10 ? esc_attr('0'.$i) : esc_attr($i)); ?>" <?php echo ($current_month == $i ? 'selected="selected"' : ''); ?>><?php echo esc_html($this->main->date_i18n('F', mktime(0, 0, 0, $i, 10))); ?></option>
<?php endfor; ?>
</select>
<button type="submit"><?php esc_html_e('Display Events', 'modern-events-calendar-lite'); ?></button>
</form>
</div>
</div>
</div>
</div>
<?php
}
public function map_meta_cap($caps, $cap, $user_id, $args)
{
if('mec_bookings' == $cap) $caps = array('mec_bookings');
return $caps;
}
public function only_booked_users_content($atts, $content = '')
{
// Current User
$user_id = get_current_user_id();
// Guest User
if(!$user_id) return '';
// Event
global $mec_current_event;
// Invalid Event
if(!$mec_current_event or ($mec_current_event and !isset($mec_current_event->ID))) return '';
// Date
$date = (isset($mec_current_event->date) ? $mec_current_event->date : array());
$start_timestamp = (isset($date['start']) and isset($date['start']['timestamp'])) ? $date['start']['timestamp'] : NULL;
$end_timestamp = (isset($date['end']) and isset($date['end']['timestamp'])) ? $date['end']['timestamp'] : NULL;
// Invalid Date
if(!$start_timestamp or !$end_timestamp) return '';
// Not Booked
if(!$this->main->is_user_booked($user_id, $mec_current_event->ID, $start_timestamp)) return '';
// Booked
return $content;
}
public function register_assets_per_page_meta_boxes()
{
$post_types = $this->assets_per_page_post_types();
add_meta_box('mec_metabox_app', esc_html__('Include MEC Assets', 'modern-events-calendar-lite'), array($this, 'meta_box_assets_per_page'), $post_types, 'side', 'low');
}
public function meta_box_assets_per_page($post)
{
$mec_include_assets = get_post_meta($post->ID, 'mec_include_assets', true);
?>
<div class="mec-assets-per-page-metabox">
<label for="mec_include_assets">
<input type="hidden" name="mec_include_assets" value="0" />
<input type="checkbox" name="mec_include_assets" id="mec_include_assets" <?php echo ($mec_include_assets ? 'checked="checked"' : ''); ?> value="1" />
<?php esc_html_e('Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)', 'modern-events-calendar-lite'); ?>
</label>
</div>
<?php
}
public function assets_per_page_save_page($post_id, $post)
{
// If this is an autosave, our form has not been submitted, so we don't want to do anything.
if(defined('DOING_AUTOSAVE') and DOING_AUTOSAVE) return;
$post_types = $this->assets_per_page_post_types();
// Not a Supported Post Type
if(!in_array($post->post_type, $post_types)) return;
if(isset($_POST['mec_include_assets']))
{
$mec_include_assets = sanitize_text_field($_POST['mec_include_assets']);
update_post_meta($post_id, 'mec_include_assets', $mec_include_assets);
}
}
public function assets_per_page($status)
{
global $post;
$status_per_page = 1;
if($post)
{
$post_types = $this->assets_per_page_post_types();
if(isset($post->post_type) and in_array($post->post_type, $post_types))
{
$status_per_page = get_post_meta($post->ID, 'mec_include_assets', true);
if(trim($status_per_page) == '') $status_per_page = 0;
}
}
if (is_plugin_active('buddyboss-platform/bp-loader.php') &&
is_plugin_active('mec-buddyboss/mec-buddyboss.php')&&
(isset($this->settings['assets_per_page_status']) and $this->settings['assets_per_page_status'])) {
if(isset($post->is_page) && $status_per_page == 0) $status_per_page = 1;
return (boolean) $status_per_page;
}
// Turned Off
if(!isset($this->settings['assets_per_page_status']) or (isset($this->settings['assets_per_page_status']) and !$this->settings['assets_per_page_status'])) return $status;
// Turned On
else
{
$status = (boolean) $status_per_page;
}
return $status;
}
public function assets_per_page_post_types()
{
return apply_filters('mec_assets_per_page_post_types', array('page', 'post', 'forum', 'topic', 'reply'));
}
public function page_title($title)
{
// Occurrences Status
$occurrences_status = (isset($this->settings['per_occurrences_status']) and $this->settings['per_occurrences_status'] and $this->getPRO());
if(is_singular($this->main->get_main_post_type()) and $occurrences_status)
{
global $post;
$timestamp = ((isset($_GET['time']) and $_GET['time']) ? (int) sanitize_text_field($_GET['time']) : NULL);
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : NULL);
if(!$timestamp and $occurrence) $timestamp = strtotime($occurrence) + (int) get_post_meta($post->ID, 'mec_start_day_seconds', true);
if(!$timestamp)
{
$render = $this->getRender();
$dates = $render->dates($post->ID, NULL, 1, date('Y-m-d', strtotime('Yesterday')));
if(isset($dates[0]) and isset($dates[0]['start']) and isset($dates[0]['start']['timestamp'])) $timestamp = $dates[0]['start']['timestamp'];
}
$title = MEC_feature_occurrences::param($post->ID, $timestamp, 'title', $title);
}
return $title;
}
public function dropdown()
{
// Check if our nonce is set.
if(!isset($_POST['_wpnonce'])) $this->main->response(array('success'=>0, 'code'=>'NONCE_MISSING'));
// Verify that the nonce is valid.
if(!wp_verify_nonce(sanitize_text_field($_POST['_wpnonce']), 'mec_occurrences_dropdown')) $this->main->response(array('success'=>0, 'code'=>'NONCE_IS_INVALID'));
$date = isset($_POST['date']) ? sanitize_text_field($_POST['date']) : '';
$id = isset($_POST['id']) ? sanitize_text_field($_POST['id']) : '';
// Date is invalid!
if(!trim($date) or !trim($id)) $this->main->response(array('success'=>0, 'code'=>'DATE_OR_ID_IS_INVALID'));
$dates = explode(':', $date);
$limit = 100;
$now = $dates[0];
$_6months_ago = strtotime('-6 Months', $now);
$occ = new MEC_feature_occurrences();
$occurrences = $occ->get_dates($id, $now, $limit);
$date_format = get_option('date_format');
$time_format = get_option('time_format');
$datetime_format = $date_format.' '.$time_format;
$success = 0;
$html = '<option class="mec-load-occurrences" value="'.esc_attr($_6months_ago.':'.$_6months_ago).'">'.esc_html__('Previous Occurrences', 'modern-events-calendar-lite').'</option>';
$i = 1;
foreach($occurrences as $occurrence)
{
$success = 1;
$html .= '<option value="'.esc_attr($occurrence->tstart.':'.$occurrence->tend).'" '.($i === 1 ? 'selected="selected"' : '').'>'.date_i18n($datetime_format, $occurrence->tstart).'</option>';
$i++;
}
if(count($occurrences) >= $limit and isset($occurrence)) $html .= '<option class="mec-load-occurrences" value="'.esc_attr($occurrence->tstart.':'.$occurrence->tend).'">'.esc_html__('Next Occurrences', 'modern-events-calendar-lite').'</option>';
$this->main->response(array('success'=>$success, 'html'=>$html));
}
public function upload_mimes($mimes)
{
if(!is_array($mimes)) return $mimes;
if(!isset($mimes['zip'])) $mimes['zip'] = 'application/zip';
return $mimes;
}
/**
* @param $skin
* @param array $options
* @return string
*/
public function search_form_event_fields($skin, $options = array())
{
// Feature Disabled
if(!isset($this->settings['display_event_fields_search']) or (isset($this->settings['display_event_fields_search']) and !$this->settings['display_event_fields_search'])) return '';
$event_fields = $this->main->get_event_fields();
$field_options = (isset($options['fields']) and is_array($options['fields']) and count($options['fields'])) ? $options['fields'] : [];
// No Fields
if(!is_array($event_fields) or (is_array($event_fields) and !count($event_fields))) return '';
ob_start();
foreach($event_fields as $field_id => $event_field)
{
// Templates
if(!is_numeric($field_id)) continue;
$label = isset($event_field['label']) ? $event_field['label'] : '';
$type = isset($event_field['type']) ? $event_field['type'] : '';
if(!$label or !$type) continue;
if(in_array($type, array('p', 'email', 'url', 'tel'))) continue;
?>
<div class="mec-form-row">
<label class="mec-col-12" for="mec_sf_<?php echo esc_attr($skin); ?>_fields_<?php echo esc_attr($field_id); ?>"><?php echo esc_html__($label); ?></label>
<select class="mec-col-12" name="mec[sf-options][<?php echo esc_attr($skin); ?>][fields][<?php echo esc_attr($field_id); ?>][type]" id="mec_sf_<?php echo esc_attr($skin); ?>_fields_<?php echo esc_attr($field_id); ?>">
<option value="0" <?php if(isset($field_options[$field_id]) and isset($field_options[$field_id]['type']) and $field_options[$field_id]['type'] == '0') echo 'selected="selected"'; ?>><?php esc_html_e('Disabled', 'modern-events-calendar-lite'); ?></option>
<?php if(in_array($type, array('text', 'textarea'))): ?>
<option value="text_input" <?php if(isset($field_options[$field_id]) and isset($field_options[$field_id]['type']) and $field_options[$field_id]['type'] == 'text_input') echo 'selected="selected"'; ?>><?php esc_html_e('Text Input', 'modern-events-calendar-lite'); ?></option>
<?php elseif($type === 'date'): ?>
<option value="date-range-picker" <?php if(isset($field_options[$field_id]) and isset($field_options[$field_id]['type']) and $field_options[$field_id]['type'] == 'date-range-picker') echo 'selected="selected"'; ?>><?php esc_html_e('Date Range Picker', 'modern-events-calendar-lite'); ?></option>
<?php else: ?>
<option value="dropdown" <?php if(isset($field_options[$field_id]) and isset($field_options[$field_id]['type']) and $field_options[$field_id]['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php esc_html_e('Dropdown', 'modern-events-calendar-lite'); ?></option>
<?php endif; ?>
</select>
</div>
<?php
}
$fields = ob_get_clean();
if(is_string($fields) and trim($fields)) $fields = '<h4 style="margin-bottom: 0;">'.esc_html__('Event Fields', 'modern-events-calendar-lite').'</h4><hr style="margin-top: 3px;">' .$fields;
return $fields;
}
/**
* @return void
*/
public function download_debug_log_file()
{
if(!isset($_REQUEST['mec-download-log-file']) || !$_REQUEST['mec-download-log-file']) return;
// Current User is not Permitted
if(!current_user_can('manage_options')) return;
$log_file = WP_CONTENT_DIR.'/debug.log';
if(defined('WP_DEBUG_LOG') && is_string(WP_DEBUG_LOG)) $log_file = WP_DEBUG_LOG;
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename('debug.log'));
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($log_file));
readfile($log_file);
exit;
}
/**
* @return void
*/
public function rerun_sql()
{
// Current User is not Permitted
if(!current_user_can('manage_options')) return;
// Create Tables
$this->main->create_mec_tables();
// Response
wp_send_json(["success" => 1, 'message' => esc_html__('Database setup is done.')]);
}
}