| @@ -1,4 +1,4 @@ | ||
| 1 | 1 | <?php /** |
| 2 | 2 | * @version 1.1 |
| 3 | 3 | * @package Any |
| 4 | 4 | * @category Toolbar. UI Elements for Admin Panel |
| @@ -48,12 +48,20 @@ | ||
| 48 | 48 | ?></div><?php |
| 49 | 49 | |
| 50 | 50 | ?><div class="ui_group ui_group__keyword ui_search_fields_group_2"><?php // array( 'class' => 'group_nowrap' ) // Elements at Several or One Line |
| 51 | 51 | |
| 52 | - wpbc_ajx__ui__booking_resources( $escaped_search_request_params, $default_param_values ); | |
| 52 | + wpbc_ajx__ui__booking_resources( $escaped_search_request_params, $default_param_values ); | |
| 53 | + | |
| 54 | + /** | |
| 55 | + * Render extension filters after the Booking Resource selector. | |
| 56 | + * | |
| 57 | + * @param array<string,mixed> $escaped_search_request_params Sanitized current filter values. | |
| 58 | + * @param array<string,mixed> $default_param_values Default filter values. | |
| 59 | + */ | |
| 60 | + do_action( 'wpbc_booking_listing_toolbar_after_resources', $escaped_search_request_params, $default_param_values ); | |
| 61 | + | |
| 62 | + wpbc_ajx_toolbar_keyword_search( $escaped_search_request_params, $default_param_values ); | |
| 53 | 63 | |
| 54 | - wpbc_ajx_toolbar_keyword_search( $escaped_search_request_params, $default_param_values ); | |
| 55 | - | |
| 56 | 64 | wpbc_ajx_toolbar_clear_keyword_search( $escaped_search_request_params, $default_param_values ); // FixIn: 9.7.2.3. |
| 57 | 65 | |
| 58 | 66 | wpbc_ajx_toolbar_force_reload_button( $escaped_search_request_params, $default_param_values ); |
| 59 | 67 | |
| @@ -1462,9 +1470,9 @@ | ||
| 1462 | 1470 | function wpbc_ajx_toolbar_enqueue_css_files( $where_to_load ) { |
| 1463 | 1471 | |
| 1464 | 1472 | if ( ( is_admin() ) && ( in_array( $where_to_load, array( 'admin', 'both' ) ) ) ) { |
| 1465 | 1473 | |
| 1466 | - wp_enqueue_style( 'wpbc-flex-toolbar', wpbc_plugin_url( '/includes/_toolbar_ui/_src/toolbar_ui.css' ), array(), WP_BK_VERSION_NUM ); | |
| 1474 | + wp_enqueue_style( 'wpbc-flex-toolbar', wpbc_plugin_url( '/includes/_toolbar_ui/_out/toolbar_ui.css' ), array(), WP_BK_VERSION_NUM ); | |
| 1467 | 1475 | } |
| 1468 | 1476 | } |
| 1469 | 1477 | add_action( 'wpbc_enqueue_css_files', 'wpbc_ajx_toolbar_enqueue_css_files', 50 ); |
| 1470 | 1478 | |
| @@ -1494,5 +1502,5 @@ | ||
| 1494 | 1502 | } |
| 1495 | 1503 | add_action( 'wpbc_enqueue_js_files', 'wpbc_ajx_toolbar_enqueue_js_files', 50 ); |
| 1496 | 1504 | |
| 1497 | 1505 | |
| 1498 | -// 2024-08-13 | |
| 1506 | +// 2024-08-13 | |