PluginProbe ʕ •ᴥ•ʔ
LatePoint – Calendar Booking Plugin for Appointments and Events / 5.5.2
LatePoint – Calendar Booking Plugin for Appointments and Events v5.5.2
5.6.6 5.6.5 5.6.4 5.6.3 5.6.2 5.6.1 5.6.0 5.5.2 5.5.1 5.5.0 5.4.2 trunk 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.1.8 5.1.9 5.1.91 5.1.92 5.1.93 5.1.94 5.2.0 5.2.1 5.2.10 5.2.11 5.2.2 5.2.3 5.2.4 5.2.5 5.2.6 5.2.7 5.2.8 5.2.9 5.3.0 5.3.1 5.3.2 5.4.0 5.4.1
latepoint / lib / views / bookings / _table_body.php
latepoint / lib / views / bookings Last commit date
_booking_data.php 1 year ago _full_summary.php 1 year ago _table_body.php 2 months ago customize_table.php 2 months ago grouped_bookings_quick_view.php 1 year ago index.php 2 months ago pending_approval.php 1 year ago quick_availability.php 1 year ago view_booking_log.php 1 year ago
_table_body.php
28 lines
1 <?php
2 /* @var $bookings OsBookingModel[] */
3 /* @var $services_list array */
4 /* @var $locations_list array */
5 /* @var $agents_list array */
6 /* @var $selected_columns array */
7 /* @var $ordered_columns array */
8
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit; // Exit if accessed directly
11 }
12 ?>
13
14 <?php
15 if($bookings){
16 foreach ($bookings as $booking): ?>
17 <tr class="os-clickable-row" <?php echo OsBookingHelper::quick_booking_btn_html($booking->id); ?>>
18 <?php
19 foreach ( $ordered_columns as $col_key => $col_def ) {
20 if ( ! OsSettingsHelper::is_bookings_column_visible( $col_def, $selected_columns, count( $services_list ), count( $agents_list ), count( $locations_list ) ) ) continue;
21 echo OsBookingHelper::render_table_body_cell( $col_key, $col_def, $booking );
22 }
23 ?>
24 </tr>
25 <?php
26 endforeach;
27 }?>
28