_top_bar.php
48 lines
| 1 | <?php |
| 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | exit; // Exit if accessed directly |
| 4 | } |
| 5 | ?> |
| 6 | <div class="latepoint-top-bar-w"> |
| 7 | <a href="#" title="<?php esc_attr_e('Menu', 'latepoint'); ?>" class="latepoint-top-iconed-link latepoint-mobile-top-menu-trigger"> |
| 8 | <i class="latepoint-icon latepoint-icon-menu"></i> |
| 9 | </a> |
| 10 | <div class="latepoint-top-search-w"> |
| 11 | <div class="latepoint-top-search-input-w"> |
| 12 | <i class="latepoint-icon latepoint-icon-x latepoint-mobile-top-search-trigger-cancel"></i> |
| 13 | <input type="text" data-route="<?php echo esc_attr(OsRouterHelper::build_route_name('search', 'query_results')); ?>" |
| 14 | class="latepoint-top-search" |
| 15 | name="search" |
| 16 | placeholder="<?php esc_attr_e('Search...', 'latepoint'); ?>"> |
| 17 | </div> |
| 18 | <div class="latepoint-top-search-results-w"></div> |
| 19 | </div> |
| 20 | <a href="#" title="<?php esc_attr_e('Search', 'latepoint'); ?>" |
| 21 | class="latepoint-top-iconed-link latepoint-mobile-top-search-trigger"><i |
| 22 | class="latepoint-icon latepoint-icon-search1"></i></a> |
| 23 | <?php do_action('latepoint_top_bar_before_actions'); ?> |
| 24 | <a href="<?php echo esc_url(OsRouterHelper::build_link(['activities', 'index'])); ?>" |
| 25 | title="<?php esc_attr_e('Activity Log', 'latepoint'); ?>" |
| 26 | class="latepoint-top-iconed-link latepoint-top-activity-trigger"> |
| 27 | <i class="latepoint-icon latepoint-icon-clock"></i> |
| 28 | </a> |
| 29 | <a href="<?php echo esc_url(OsRouterHelper::build_link(['bookings', 'pending_approval'])); ?>" |
| 30 | title="<?php esc_attr_e('Pending Bookings', 'latepoint'); ?>" |
| 31 | class="latepoint-top-iconed-link latepoint-top-notifications-trigger"> |
| 32 | <i class="latepoint-icon latepoint-icon-box1"></i> |
| 33 | <?php |
| 34 | $count_pending_bookings = OsBookingHelper::count_pending_bookings(); |
| 35 | if ($count_pending_bookings > 0) echo '<span class="notifications-count">' . esc_html($count_pending_bookings) . '</span>'; ?> |
| 36 | </a> |
| 37 | <a href="#" <?php echo OsOrdersHelper::quick_order_btn_html(); ?> |
| 38 | title="<?php esc_attr_e('New Booking', 'latepoint'); ?>" |
| 39 | class="latepoint-mobile-top-new-appointment-btn-trigger latepoint-top-iconed-link"> |
| 40 | <i class="latepoint-icon latepoint-icon-plus"></i> |
| 41 | </a> |
| 42 | <?php do_action('latepoint_top_bar_after_actions'); ?> |
| 43 | <a href="#" |
| 44 | class="latepoint-top-new-appointment-btn latepoint-btn latepoint-btn-primary" <?php echo OsOrdersHelper::quick_order_btn_html(); ?>> |
| 45 | <i class="latepoint-icon latepoint-icon-plus"></i> |
| 46 | <span><?php esc_html_e('New Booking', 'latepoint'); ?></span> |
| 47 | </a> |
| 48 | </div> |