398 lines
16 KiB
PHP
398 lines
16 KiB
PHP
<?php
|
|
if (!defined('ABSPATH')) {
|
|
die;
|
|
} // Cannot access pages directly.
|
|
|
|
add_shortcode('event-calendar', 'mep_cal_func');
|
|
function mep_cal_func($atts, $content = null){
|
|
ob_start();
|
|
echo mep_event_calender();
|
|
return ob_get_clean();
|
|
}
|
|
|
|
function mep_event_calender(){
|
|
?>
|
|
<div class="event-calendar"></div>
|
|
<script>
|
|
jQuery(document).ready(function () {
|
|
const myEvents = [
|
|
<?php
|
|
$loop = mep_event_query('all',-1);
|
|
$i = 1;
|
|
$count = $loop->post_count - 1;
|
|
while ($loop->have_posts()) {
|
|
$loop->the_post();
|
|
$event_meta = get_post_custom(get_the_id());
|
|
$author_terms = get_the_terms(get_the_id(), 'mep_org');
|
|
$time = strtotime($event_meta['event_start_date'][0] . ' ' . $event_meta['event_start_time'][0]);
|
|
$newformat = date_i18n('Y-m-d H:i:s', $time);
|
|
?>
|
|
{
|
|
start: '<?php echo date_i18n('Y-m-d H:i', strtotime($event_meta['event_start_date'][0] . ' ' . $event_meta['event_start_time'][0])); ?>',
|
|
end: '<?php echo date_i18n('Y-m-d H:i', strtotime($event_meta['event_end_date'][0] . ' ' . $event_meta['event_end_time'][0])); ?>',
|
|
title: '<?php the_title(); ?>',
|
|
url: '<?php the_permalink(); ?>',
|
|
class: '',
|
|
color: '#000',
|
|
data: {}
|
|
},
|
|
<?php
|
|
$event_multidate = maybe_unserialize($event_meta['mep_event_more_date'][0]);
|
|
if(is_array($event_multidate) && sizeof($event_multidate) >0){
|
|
foreach($event_multidate as $_event_multidate){
|
|
?>
|
|
|
|
{
|
|
start: '<?php echo date_i18n('Y-m-d H:i', strtotime($_event_multidate['event_more_start_date'] . ' ' . $_event_multidate['event_more_start_time'])); ?>',
|
|
end: '<?php echo date_i18n('Y-m-d H:i', strtotime($_event_multidate['event_more_end_date'] . ' ' . $_event_multidate['event_more_end_time'])); ?>',
|
|
title: '<?php the_title(); ?>',
|
|
url: '<?php the_permalink(); ?>',
|
|
class: '',
|
|
color: '#000',
|
|
data: {}
|
|
},
|
|
|
|
|
|
<?php } } $i++; } wp_reset_postdata(); ?>]
|
|
|
|
jQuery('.event-calendar').equinox({
|
|
events: myEvents
|
|
});
|
|
});
|
|
</script>
|
|
<?php
|
|
}
|
|
|
|
|
|
add_shortcode('event-list', 'mep_event_list');
|
|
function mep_event_list($atts, $content = null){
|
|
$defaults = array(
|
|
"cat" => "0",
|
|
"org" => "0",
|
|
"style" => "grid",
|
|
"column" => 3,
|
|
"cat-filter" => "no",
|
|
"org-filter" => "no",
|
|
"show" => "-1",
|
|
"pagination" => "no",
|
|
'sort' => 'ASC'
|
|
);
|
|
$params = shortcode_atts($defaults, $atts);
|
|
$cat = $params['cat'];
|
|
$org = $params['org'];
|
|
$style = $params['style'];
|
|
$cat_f = $params['cat-filter'];
|
|
$org_f = $params['org-filter'];
|
|
$show = $params['show'];
|
|
$pagination = $params['pagination'];
|
|
$sort = $params['sort'];
|
|
$column = $params['column'];
|
|
$flex_column = $column;
|
|
$mage_div_count = 0;
|
|
$event_expire_on = mep_get_option('mep_event_expire_on_datetimes', 'general_setting_sec', 'event_start_datetime');
|
|
ob_start();
|
|
?>
|
|
<div class='mep_event_list'>
|
|
<?php if ($cat_f == 'yes') {
|
|
/**
|
|
* This is the hook where category filter lists are fired from inc/template-parts/event_list_tax_name_list.php File
|
|
*/
|
|
do_action('mep_event_list_cat_names');
|
|
}
|
|
if ($org_f == 'yes') {
|
|
/**
|
|
* This is the hook where Organization filter lists are fired from inc/template-parts/event_list_tax_name_list.php File
|
|
*/
|
|
do_action('mep_event_list_org_names');
|
|
} ?>
|
|
|
|
<div class="mep_event_list_sec">
|
|
<?php
|
|
/**
|
|
* The Main Query function mep_event_query is locet in inc/mep_query.php File
|
|
*/
|
|
if ($cat > 0) {
|
|
$loop = mep_event_query('cat',$show,$sort,$cat,0,'upcoming');
|
|
} elseif ($org > 0) {
|
|
$loop = mep_event_query('org',$show,$sort,0,$org,'upcoming');
|
|
} else {
|
|
$loop = mep_event_query('all',$show,$sort,0,0,'upcoming');
|
|
}
|
|
$total_post=$loop->post_count;
|
|
echo '<div class="mage_grid_box">';
|
|
while ($loop->have_posts()) {
|
|
$loop->the_post();
|
|
if ($style == 'grid') {
|
|
if ($column == 2) {
|
|
$columnNumber = 'two_column';
|
|
} elseif ($column == 3) {
|
|
$columnNumber = 'three_column';
|
|
} elseif ($column == 4) {
|
|
$columnNumber = 'four_column';
|
|
} else {
|
|
$columnNumber = 'two_column';
|
|
}
|
|
} else {
|
|
$columnNumber = 'one_column';
|
|
}
|
|
/**
|
|
* This is the hook where Event Loop List fired from inc/template-parts/event_loop_list.php File
|
|
*/
|
|
do_action('mep_event_list_shortcode',get_the_id(),$columnNumber,$style);
|
|
}
|
|
wp_reset_postdata();
|
|
echo '</div>';
|
|
if ($pagination == 'yes') {
|
|
/**
|
|
* The Pagination function mep_event_pagination is locet in inc/mep_query.php File
|
|
*/
|
|
mep_event_pagination($loop->max_num_pages);
|
|
} ?>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
jQuery(document).ready(function () {
|
|
var containerEl = document.querySelector('.mep_event_list_sec');
|
|
var mixer = mixitup(containerEl);
|
|
});
|
|
</script>
|
|
<?php
|
|
$content = ob_get_clean();
|
|
return $content;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
add_shortcode('expire-event-list', 'mep_expire_event_list');
|
|
function mep_expire_event_list($atts, $content = null)
|
|
{
|
|
$defaults = array(
|
|
"cat" => "0",
|
|
"org" => "0",
|
|
"style" => "grid",
|
|
"cat-filter" => "no",
|
|
"org-filter" => "no",
|
|
"show" => "-1",
|
|
"pagination" => "no",
|
|
'sort' => 'DESC'
|
|
);
|
|
|
|
$params = shortcode_atts($defaults, $atts);
|
|
$cat = $params['cat'];
|
|
$org = $params['org'];
|
|
$style = $params['style'];
|
|
$cat_f = $params['cat-filter'];
|
|
$org_f = $params['org-filter'];
|
|
$show = $params['show'];
|
|
$pagination = $params['pagination'];
|
|
$sort = $params['sort'];
|
|
$event_expire_on = mep_get_option( 'mep_event_expire_on_datetimes', 'general_setting_sec', 'event_start_datetime');
|
|
ob_start();
|
|
?>
|
|
<div class='mep_event_list'>
|
|
<?php if ($cat_f == 'yes') {
|
|
/**
|
|
* This is the hook where category filter lists are fired from inc/template-parts/event_list_tax_name_list.php File
|
|
*/
|
|
do_action('mep_event_list_cat_names');
|
|
}
|
|
if ($org_f == 'yes') {
|
|
/**
|
|
* This is the hook where Organization filter lists are fired from inc/template-parts/event_list_tax_name_list.php File
|
|
*/
|
|
do_action('mep_event_list_org_names');
|
|
} ?>
|
|
<div class="mep_event_list_sec">
|
|
<?php
|
|
/**
|
|
* The Main Query function mep_event_query is locet in inc/mep_query.php File
|
|
*/
|
|
if ($cat > 0) {
|
|
$loop = mep_event_query('cat',$show,$sort,$cat,0,'expired');
|
|
} elseif ($org > 0) {
|
|
$loop = mep_event_query('org',$show,$sort,0,$org,'expired');
|
|
} else {
|
|
$loop = mep_event_query('all',$show,$sort,0,0,'expired');
|
|
}
|
|
$total_post=$loop->post_count;
|
|
echo '<div class="mage_grid_box">';
|
|
while ($loop->have_posts()) {
|
|
$loop->the_post();
|
|
if ($style == 'grid') {
|
|
if ($column == 2) {
|
|
$columnNumber = 'two_column';
|
|
} elseif ($column == 3) {
|
|
$columnNumber = 'three_column';
|
|
} elseif ($column == 4) {
|
|
$columnNumber = 'four_column';
|
|
} else {
|
|
$columnNumber = 'two_column';
|
|
}
|
|
} else {
|
|
$columnNumber = 'one_column';
|
|
}
|
|
/**
|
|
* This is the hook where Event Loop List fired from inc/template-parts/event_loop_list.php File
|
|
*/
|
|
do_action('mep_event_list_shortcode',get_the_id(),$columnNumber,$style);
|
|
}
|
|
wp_reset_postdata();
|
|
echo '</div>';
|
|
if ($pagination == 'yes') {
|
|
/**
|
|
* The Pagination function mep_event_pagination is locet in inc/mep_query.php File
|
|
*/
|
|
mep_event_pagination($loop->max_num_pages);
|
|
} ?>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
jQuery(document).ready(function () {
|
|
var containerEl = document.querySelector('.mep_event_list_sec');
|
|
var mixer = mixitup(containerEl);
|
|
});
|
|
</script>
|
|
<?php
|
|
$content = ob_get_clean();
|
|
return $content;
|
|
}
|
|
|
|
|
|
add_shortcode('event-list-onepage', 'mep_event_onepage_list');
|
|
function mep_event_onepage_list($atts, $content = null)
|
|
{
|
|
$defaults = array(
|
|
"cat" => "0",
|
|
"org" => "0",
|
|
"style" => "grid",
|
|
"cat-filter" => "no",
|
|
"org-filter" => "no",
|
|
"show" => "-1",
|
|
"pagination" => "no",
|
|
'sort' => 'ASC'
|
|
);
|
|
|
|
$params = shortcode_atts($defaults, $atts);
|
|
$cat = $params['cat'];
|
|
$org = $params['org'];
|
|
$style = $params['style'];
|
|
$cat_f = $params['cat-filter'];
|
|
$org_f = $params['org-filter'];
|
|
$show = $params['show'];
|
|
$pagination = $params['pagination'];
|
|
$sort = $params['sort'];
|
|
$event_expire_on = mep_get_option( 'mep_event_expire_on_datetimes', 'general_setting_sec', 'event_start_datetime');
|
|
ob_start();
|
|
do_action('woocommerce_before_single_product');
|
|
?>
|
|
<div class='mep_event_list'>
|
|
<?php if ($cat_f == 'yes') {
|
|
/**
|
|
* This is the hook where category filter lists are fired from inc/template-parts/event_list_tax_name_list.php File
|
|
*/
|
|
do_action('mep_event_list_cat_names');
|
|
}
|
|
if ($org_f == 'yes') {
|
|
/**
|
|
* This is the hook where Organization filter lists are fired from inc/template-parts/event_list_tax_name_list.php File
|
|
*/
|
|
do_action('mep_event_list_org_names');
|
|
} ?>
|
|
|
|
<div class="mep_event_list_sec">
|
|
<?php
|
|
$now = current_time('Y-m-d H:i:s');
|
|
$show_price = mep_get_option('mep_event_price_show', 'general_setting_sec', 'yes');
|
|
$show_price_label = mep_get_option('event-price-label', 'general_setting_sec', 'Price Starts from:');
|
|
$paged = get_query_var("paged") ? get_query_var("paged") : 1;
|
|
|
|
/**
|
|
* The Main Query function mep_event_query is locet in inc/mep_query.php File
|
|
*/
|
|
if ($cat > 0) {
|
|
$loop = mep_event_query('cat',$show,$sort,$cat,0,'upcoming');
|
|
} elseif ($org > 0) {
|
|
$loop = mep_event_query('org',$show,$sort,0,$org,'upcoming');
|
|
} else {
|
|
$loop = mep_event_query('all',$show,$sort,0,0,'upcoming');
|
|
}
|
|
?>
|
|
<div class="mep_event_list_sec">
|
|
<?php
|
|
/**
|
|
* The Main Query function mep_event_query is locet in inc/mep_query.php File
|
|
*/
|
|
if ($cat > 0) {
|
|
$loop = mep_event_query('cat',$show,$sort,$cat,0,'upcoming');
|
|
} elseif ($org > 0) {
|
|
$loop = mep_event_query('org',$show,$sort,0,$org,'upcoming');
|
|
} else {
|
|
$loop = mep_event_query('all',$show,$sort,0,0,'upcoming');
|
|
}
|
|
$loop->the_post();
|
|
$event_meta = get_post_custom(get_the_id());
|
|
$author_terms = get_the_terms(get_the_id(), 'mep_org');
|
|
$start_datetime = $event_meta['event_start_date'][0] . ' ' . $event_meta['event_start_time'][0];
|
|
$time = strtotime($start_datetime);
|
|
$newformat = date_i18n('Y-m-d H:i:s', $time);
|
|
$tt = get_the_terms(get_the_id(), 'mep_cat');
|
|
$torg = get_the_terms(get_the_id(), 'mep_org');
|
|
$org_class = mep_get_term_as_class(get_the_id(), 'mep_org');
|
|
$cat_class = mep_get_term_as_class(get_the_id(), 'mep_cat');
|
|
$available_seat = mep_get_total_available_seat(get_the_id(), $event_meta);
|
|
echo '<div class="mage_grid_box">';
|
|
while ($loop->have_posts()) {
|
|
$loop->the_post();
|
|
if ($style == 'grid') {
|
|
if ($column == 2) {
|
|
$columnNumber = 'two_column';
|
|
} elseif ($column == 3) {
|
|
$columnNumber = 'three_column';
|
|
} elseif ($column == 4) {
|
|
$columnNumber = 'four_column';
|
|
} else {
|
|
$columnNumber = 'two_column';
|
|
}
|
|
} else {
|
|
$columnNumber = 'one_column';
|
|
}
|
|
/**
|
|
* This is the hook where Event Loop List fired from inc/template-parts/event_loop_list.php File
|
|
*/
|
|
do_action('mep_event_list_shortcode',get_the_id(),$columnNumber,$style);
|
|
|
|
$currency_pos = get_option('woocommerce_currency_pos');
|
|
$mep_full_name = strip_tags($event_meta['mep_full_name'][0]);
|
|
$mep_reg_email = strip_tags($event_meta['mep_reg_email'][0]);
|
|
$mep_reg_phone = strip_tags($event_meta['mep_reg_phone'][0]);
|
|
$mep_reg_address = strip_tags($event_meta['mep_reg_address'][0]);
|
|
$mep_reg_designation = strip_tags($event_meta['mep_reg_designation'][0]);
|
|
$mep_reg_website = strip_tags($event_meta['mep_reg_website'][0]);
|
|
$mep_reg_veg = strip_tags($event_meta['mep_reg_veg'][0]);
|
|
$mep_reg_company = strip_tags($event_meta['mep_reg_company'][0]);
|
|
$mep_reg_gender = strip_tags($event_meta['mep_reg_gender'][0]);
|
|
$mep_reg_tshirtsize = strip_tags($event_meta['mep_reg_tshirtsize'][0]);
|
|
echo '<div class=event-cart-section-list>';
|
|
do_action('mep_add_to_cart_list');
|
|
echo '</div>';
|
|
get_event_list_js(get_the_id(), $event_meta, $currency_pos);
|
|
}
|
|
wp_reset_postdata();
|
|
echo '</div>';
|
|
if ($pagination == 'yes') {
|
|
/**
|
|
* The Pagination function mep_event_pagination is locet in inc/mep_query.php File
|
|
*/
|
|
mep_event_pagination($loop->max_num_pages);
|
|
} ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
$content = ob_get_clean();
|
|
return $content;
|
|
}
|