PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
plugins
/
modern-events-calendar
/
app
/
modules
/
booking
/
steps
<?php /** no direct access **/ defined('MECEXEC') or die(); $event_id = $event->ID; $gateways = $this->main->get_gateways(); $active_gateways = array(); foreach($gateways as $gateway) { if(!$gateway->enabled()) continue; $active_gateways[] = $gateway; // When Stripe Connect is enabled and organizer is connected then skip other gateways if($gateway->id() == 7 and get_user_meta(get_post_field('post_author', $event_id), 'mec_stripe_id', true)) // Stripe Connect { $active_gateways = array($gateway); break; } } ?> <div id="mec_book_payment_form"> <h4><?php _e('Checkout', 'mec'); ?></h4> <div class="mec-book-form-price"> <?php if(isset($price_details['details']) and is_array($price_details['details']) and count($price_details['details'])): ?> <ul class="mec-book-price-details"> <?php foreach($price_details['details'] as $detail): ?> <li class="mec-book-price-detail mec-book-price-detail-type<?php echo $detail['type']; ?>"> <span class="mec-book-price-detail-description"><?php echo $detail['description']; ?></span> <span class="mec-book-price-detail-amount"><?php echo $this->main->render_price($detail['amount']); ?></span> </li> <?php endforeach; ?> </ul> <?php endif; ?> <span class="mec-book-price-total"><?php echo $this->main->render_price($price_details['total']); ?></span> </div> <?php if(isset($this->settings['coupons_status']) and $this->settings['coupons_status']): ?> <div class="mec-book-form-coupon"> <form id="mec_book_form_coupon<?php echo $uniqueid; ?>" onsubmit="mec_book_apply_coupon<?php echo $uniqueid; ?>(); return false;"> <input type="text" name="coupon" placeholder="<?php esc_attr_e('Discount Coupon', 'mec'); ?>" /> <input type="hidden" name="transaction_id" value="<?php echo $transaction_id; ?>" /> <input type="hidden" name="action" value="mec_apply_coupon" /> <?php wp_nonce_field('mec_apply_coupon_'.$transaction_id); ?> <button type="submit"><?php _e('Apply Coupon', 'mec'); ?></button> </form> <div class="mec-coupon-message mec-util-hidden"></div> </div> <?php endif; ?> <div class="mec-book-form-gateways"> <?php foreach($active_gateways as $gateway): ?> <div class="mec-book-form-gateway-label"> <label> <?php if(count($active_gateways) > 1): ?> <input type="radio" name="book[gateway]" onchange="mec_gateway_selected(this.value);" value="<?php echo $gateway->id(); ?>" /> <?php endif; ?> <?php echo $gateway->title(); ?> </label> </div> <?php endforeach; ?> <?php foreach($active_gateways as $gateway): ?> <div class="mec-book-form-gateway-checkout <?php echo (count($active_gateways) == 1 ? '' : 'mec-util-hidden'); ?>" id="mec_book_form_gateway_checkout<?php echo $gateway->id(); ?>"> <?php echo $gateway->comment(); ?> <?php $gateway->checkout_form($transaction_id); ?> </div> <?php endforeach; ?> </div> <form id="mec_book_form_free_booking<?php echo $uniqueid; ?>" class="mec-util-hidden" onsubmit="mec_book_free<?php echo $uniqueid; ?>(); return false;"> <div class="mec-form-row"> <input type="hidden" name="action" value="mec_do_transaction_free" /> <input type="hidden" name="transaction_id" value="<?php echo $transaction_id; ?>" /> <input type="hidden" name="gateway_id" value="4" /> <input type="hidden" name="uniqueid" value="<?php echo $uniqueid; ?>" /> <?php wp_nonce_field('mec_transaction_form_'.$transaction_id); ?> <button type="submit"><?php _e('Free Booking', 'mec'); ?></button> </div> </form> </div>
[+]
..
[-] checkout.php
[edit]
[-] message.php
[edit]
[-] form.php
[edit]
[-] tickets.php
[edit]
[-] index.html
[edit]