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 / partials / account-react-root.php

account-react-root.php in Yatra – Travel Booking & Tour Operator Software 3.0.15, at templates/partials/account-react-root.php

13 lines 555 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Shared React mount for customer account (virtual route + [yatra_my_account] shortcode).
4 *
5 * Expects boolean $yatra_account_react_embed: false = standalone full page, true = inside theme content.
6 */
7 defined('ABSPATH') || exit();
8
9 $embed = !empty($yatra_account_react_embed);
10 $min_h = $embed ? 'min(85vh, 900px)' : '100vh';
11 ?>
12 <div id="yatra-account-page-root" class="yatra-account-react-root<?php echo $embed ? ' yatra-account-react-root--embed' : ''; ?>" style="width:100%;min-height:<?php echo esc_attr($min_h); ?>;display:block;"></div>
13