PluginProbe
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution / 2.2.5
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution v2.2.5
2.4.0 2.3.0 2.2.5 2.2.0 2.1.2 2.1.1 trunk 1.10.0 1.10.01 1.10.02 1.5.0 1.5.01 1.5.02 1.5.1 1.5.10 1.5.20 1.5.21 1.5.22 1.5.23 1.5.24 1.5.25 1.6.0 1.7.0 1.7.1 1.7.2 All 33 releases
fluent-booking / app / Views / public / calendar.php

calendar.php in Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution 2.2.5, at app/Views/public/calendar.php

28 lines 811 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @var $theme
4 * @var $calenderEvent
5 */
6
7 defined( 'ABSPATH' ) || exit;
8
9 $mode = '';
10 if ($theme == 'dark') {
11 $mode = 'fcal-dark-mode';
12 } else if ($theme == 'light') {
13 $mode = 'fcal-light-mode';
14 }
15 ?>
16 <div class="fcal_cal_wrap <?php echo esc_attr($mode); ?>">
17 <div class="fluent_booking_app" data-calendar_id="<?php echo (int)$calenderEvent->calendar_id; ?>"
18 data-event_id="<?php echo (int)$calenderEvent->id; ?>"></div>
19 <?php do_action('fluent_booking/short_code_render', $calenderEvent); ?>
20 </div>
21
22 <style>
23 .fcal_phone_wrapper .flag {
24 background: url(<?php echo esc_url(\FluentBooking\App\App::getInstance()['url.assets'].'images/flags_responsive.png'); ?>) no-repeat;
25 background-size: 100%;
26 }
27 </style>
28