_booking_tile.php
1 week ago
_bundle_tile.php
1 year ago
_order_tile.php
2 months ago
dashboard.php
2 months ago
login.php
9 months ago
password_reset_form.php
2 months ago
request_password_reset_token.php
2 months ago
scheduling_summary_for_bundle.php
1 year ago
view_booking_summary_in_lightbox.php
1 year ago
view_order_summary_in_lightbox.php
1 year ago
scheduling_summary_for_bundle.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * @var $bundle OsBundleModel |
| 5 | * @var $order_item OsOrderItemModel |
| 6 | */ |
| 7 | |
| 8 | |
| 9 | if ( ! defined( 'ABSPATH' ) ) { |
| 10 | exit; // Exit if accessed directly |
| 11 | } |
| 12 | |
| 13 | echo '<div class="latepoint-customer-bundle-scheduling-summary">'; |
| 14 | echo OsBundlesHelper::generate_summary_for_bundle($bundle, false, $order_item->id, LATEPOINT_USER_TYPE_CUSTOMER); |
| 15 | echo '</div>'; |