mage-eventpress/inc/mep_shortcode.php

453 lines
17 KiB
PHP
Raw Normal View History

<?php
2020-01-22 07:15:24 -05:00
if (!defined('ABSPATH')) {
die;
} // Cannot access pages directly.
2018-07-02 04:39:41 -04:00
2020-04-08 14:30:01 -04:00
add_shortcode('event-city-list', 'mep_event_city_list_shortcode_func');
function mep_event_city_list_shortcode_func($atts, $content = null){
ob_start();
echo mep_event_get_event_city_list();
return ob_get_clean();
}
2020-01-22 07:15:24 -05:00
add_shortcode('event-calendar', 'mep_cal_func');
2020-02-05 07:47:07 -05:00
function mep_cal_func($atts, $content = null){
2019-10-07 00:39:24 -04:00
ob_start();
2020-01-22 07:15:24 -05:00
echo mep_event_calender();
2019-10-07 00:39:24 -04:00
return ob_get_clean();
}
2020-02-05 07:47:07 -05:00
function mep_event_calender(){
2020-03-19 08:34:31 -04:00
?>
2020-01-22 07:15:24 -05:00
<div class="event-calendar"></div>
<script>
jQuery(document).ready(function () {
const myEvents = [
<?php
2020-03-19 08:34:31 -04:00
$loop = mep_event_query('all',-1);
$i = 1;
$count = $loop->post_count - 1;
2020-01-22 07:15:24 -05:00
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: {}
2020-02-26 06:32:28 -05:00
},
<?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(); ?>]
2020-01-22 07:15:24 -05:00
jQuery('.event-calendar').equinox({
events: myEvents
});
});
</script>
<?php
2018-07-02 04:39:41 -04:00
}
2020-01-22 07:15:24 -05:00
add_shortcode('event-list', 'mep_event_list');
2020-02-05 07:47:07 -05:00
function mep_event_list($atts, $content = null){
2020-01-22 07:15:24 -05:00
$defaults = array(
2020-04-08 14:30:01 -04:00
"cat" => "0",
"org" => "0",
"style" => "grid",
"column" => 3,
"cat-filter" => "no",
"org-filter" => "no",
"show" => "-1",
"pagination" => "no",
"city" => "",
"country" => "",
"carousal-nav" => "no",
"carousal-dots" => "yes",
"carousal-id" => "102448",
"timeline-mode" => "vertical",
'sort' => 'ASC'
2020-01-22 07:15:24 -05:00
);
2020-02-05 07:47:07 -05:00
$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'];
2020-04-08 14:30:01 -04:00
$column = $style != 'grid' ? 1 : $params['column'];
$nav = $params['carousal-nav'] == 'yes' ? 1 : 0;
$dot = $params['carousal-dots'] == 'yes' ? 1 : 0;
$city = $params['city'];
$country = $params['country'];
$cid = $params['carousal-id'];
$main_div = $pagination == 'carousal' ? '<div class="mage_grid_box owl-theme owl-carousel" id="mep-carousel'.$cid.'">' : '<div class="mage_grid_box">';
$time_line_div_start = $style == 'timeline' ? '<div class="timeline"><div class="timeline__wrap"><div class="timeline__items">' : '';
$time_line_div_end = $style == 'timeline' ? '</div></div></div>' : '';
2020-02-05 07:47:07 -05:00
$flex_column = $column;
2020-01-22 07:15:24 -05:00
$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'>
2020-03-19 08:34:31 -04:00
<?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');
} ?>
2020-01-22 07:15:24 -05:00
<div class="mep_event_list_sec">
<?php
2020-03-19 08:34:31 -04:00
/**
* The Main Query function mep_event_query is locet in inc/mep_query.php File
*/
2020-04-08 14:30:01 -04:00
$loop = mep_event_query($show,$sort,$cat,$org,$city,$country,'upcoming');
2020-01-22 07:15:24 -05:00
$total_post=$loop->post_count;
2020-04-08 14:30:01 -04:00
echo $main_div;
echo $time_line_div_start;
2020-01-22 07:15:24 -05:00
while ($loop->have_posts()) {
2020-03-19 08:34:31 -04:00
$loop->the_post();
2020-01-22 07:15:24 -05:00
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';
}
2020-03-19 08:34:31 -04:00
/**
* 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);
2020-01-22 07:15:24 -05:00
}
wp_reset_postdata();
2020-04-08 14:30:01 -04:00
echo $time_line_div_end;
2020-03-19 08:34:31 -04:00
if ($pagination == 'yes') {
/**
* The Pagination function mep_event_pagination is locet in inc/mep_query.php File
*/
mep_event_pagination($loop->max_num_pages);
} ?>
2020-04-08 14:30:01 -04:00
</div>
2020-01-22 07:15:24 -05:00
</div>
</div>
<script>
jQuery(document).ready(function () {
2018-10-31 05:30:00 -04:00
var containerEl = document.querySelector('.mep_event_list_sec');
var mixer = mixitup(containerEl);
2020-04-08 14:30:01 -04:00
<?php if($pagination == 'carousal'){ ?>
jQuery('#mep-carousel<?php echo $cid; ?>').owlCarousel({
autoplay:true,
autoplayHoverPause:true,
loop:true,
margin:20,
nav:<?php echo $nav; ?>,
dots:<?php echo $dot; ?>,
responsiveClass:true,
responsive:{
0:{
items:1,
},
600:{
items:2,
},
1000:{
items:<?php echo $column; ?>,
}
}
});
<?php } ?>
<?php do_action('mep_event_shortcode_js_script',$params); ?>
2020-01-22 07:15:24 -05:00
});
</script>
<?php
$content = ob_get_clean();
return $content;
2018-10-31 05:30:00 -04:00
}
2020-03-19 08:34:31 -04:00
2020-01-22 07:15:24 -05:00
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'];
2020-02-05 07:47:07 -05:00
$event_expire_on = mep_get_option( 'mep_event_expire_on_datetimes', 'general_setting_sec', 'event_start_datetime');
2020-01-22 07:15:24 -05:00
ob_start();
?>
<div class='mep_event_list'>
2020-03-19 08:34:31 -04:00
<?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">
2020-01-22 07:15:24 -05:00
<?php
2020-03-19 08:34:31 -04:00
/**
* The Main Query function mep_event_query is locet in inc/mep_query.php File
*/
2020-01-22 07:15:24 -05:00
if ($cat > 0) {
2020-03-19 08:34:31 -04:00
$loop = mep_event_query('cat',$show,$sort,$cat,0,'expired');
2020-01-22 07:15:24 -05:00
} elseif ($org > 0) {
2020-03-19 08:34:31 -04:00
$loop = mep_event_query('org',$show,$sort,0,$org,'expired');
2020-01-22 07:15:24 -05:00
} else {
2020-03-19 08:34:31 -04:00
$loop = mep_event_query('all',$show,$sort,0,0,'expired');
2020-01-22 07:15:24 -05:00
}
2020-03-19 08:34:31 -04:00
$total_post=$loop->post_count;
echo '<div class="mage_grid_box">';
2020-01-22 07:15:24 -05:00
while ($loop->have_posts()) {
2020-03-19 08:34:31 -04:00
$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);
2020-01-22 07:15:24 -05:00
}
wp_reset_postdata();
2020-03-19 08:34:31 -04:00
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);
} ?>
2020-01-22 07:15:24 -05:00
</div>
</div>
<script>
jQuery(document).ready(function () {
2018-08-10 12:12:04 -04:00
var containerEl = document.querySelector('.mep_event_list_sec');
var mixer = mixitup(containerEl);
2020-01-22 07:15:24 -05:00
});
</script>
<?php
$content = ob_get_clean();
return $content;
}
2020-01-22 07:15:24 -05:00
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'];
2020-02-05 07:47:07 -05:00
$event_expire_on = mep_get_option( 'mep_event_expire_on_datetimes', 'general_setting_sec', 'event_start_datetime');
2020-01-22 07:15:24 -05:00
ob_start();
do_action('woocommerce_before_single_product');
?>
<div class='mep_event_list'>
2020-03-19 08:34:31 -04:00
<?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');
} ?>
2020-01-22 07:15:24 -05:00
<div class="mep_event_list_sec">
<?php
2020-03-19 08:34:31 -04:00
$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
*/
2020-01-22 07:15:24 -05:00
if ($cat > 0) {
2020-03-19 08:34:31 -04:00
$loop = mep_event_query('cat',$show,$sort,$cat,0,'upcoming');
2020-01-22 07:15:24 -05:00
} elseif ($org > 0) {
2020-03-19 08:34:31 -04:00
$loop = mep_event_query('org',$show,$sort,0,$org,'upcoming');
2020-01-22 07:15:24 -05:00
} else {
2020-03-19 08:34:31 -04:00
$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');
2020-01-22 07:15:24 -05:00
}
$loop->the_post();
2020-03-19 08:34:31 -04:00
$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];
2020-01-22 07:15:24 -05:00
$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');
2020-03-19 08:34:31 -04:00
$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);
2020-01-22 07:15:24 -05:00
$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();
2020-03-19 08:34:31 -04:00
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>
2020-01-22 07:15:24 -05:00
</div>
</div>
<?php
$content = ob_get_clean();
return $content;
2020-01-23 07:06:05 -05:00
}