PluginProbe
Yatra – Travel Booking & Tour Operator Software / 3.0.15
Yatra – Travel Booking & Tour Operator Software v3.0.15
3.0.15 3.0.14 3.0.14.1 3.0.14.2 3.0.12 3.0.13 3.0.11 3.0.10 3.0.9 3.0.8 3.0.7 3.0.6 3.0.5 3.0.5.1 3.0.4 3.0.3 3.0.2.9 3.0.2.7 3.0.2.8 3.0.2.6 trunk 1.0.0 2.0.0 2.0.1 2.0.10 All 83 releases
yatra / templates / remaining-checkout.php

remaining-checkout.php in Yatra – Travel Booking & Tour Operator Software 3.0.15, at templates/remaining-checkout.php

32 lines 645 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Remaining Checkout Template
4 */
5
6 if (!defined('ABSPATH')) {
7 exit;
8 }
9
10 yatra_start_session();
11
12 $booking = $booking ?? ($GLOBALS['yatra_booking'] ?? null);
13
14 yatra_get_header();
15 ?>
16
17 <div class="yatra-booking-page yatra-remaining-page">
18 <div class="yatra-booking-container">
19 <?php
20 $partial = YATRA_PLUGIN_PATH . 'templates/partials/remaining-checkout-content.php';
21 if (file_exists($partial)) {
22 include $partial;
23 } else {
24 echo '<p>' . esc_html__('Remaining checkout content missing.', 'yatra') . '</p>';
25 }
26 ?>
27 </div>
28 </div>
29
30
31 <?php yatra_get_footer(); ?>
32