Availability & Slots Filters
Filters affecting availability schedules, slot computation, and fallback timezone behavior.
4 unique filter hooks currently map to this category, across 6 call sites.
Hook Inventory
| Hook | Edition | Call Sites | First Source |
|---|---|---|---|
fluent_booking/availability_schedule_options | Core | 1 | fluent-booking/app/Services/AvailabilityService.php:152 |
fluent_booking/available_date_formats | Core | 1 | fluent-booking/app/Services/DateTimeHelper.php:201 |
fluent_booking/available_slots_for_view | Core + PRO | 3 | fluent-booking/app/Hooks/Handlers/FrontEndHandler.php:1004 |
fluent_booking/fallback_timezone | Core | 1 | fluent-booking/app/Services/DateTimeHelper.php:85 |
fluent_booking/availability_schedule_options
- Type: filter
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Services/AvailabilityService.php:152
Example
php
add_filter('fluent_booking/availability_schedule_options', function ($value, ...$rest) {
return $value;
}, 10, 1 + count($rest ?? []));fluent_booking/available_date_formats
- Type: filter
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Services/DateTimeHelper.php:201
Example
php
add_filter('fluent_booking/available_date_formats', function ($value, ...$rest) {
return $value;
}, 10, 1 + count($rest ?? []));fluent_booking/available_slots_for_view
- Type: filter
- Edition: Core + PRO
- Call sites: 3
Source locations
fluent-booking/app/Hooks/Handlers/FrontEndHandler.php:1004fluent-booking/app/Http/Controllers/BookingController.php:313fluent-booking-pro/app/Modules/SingleEvent/SingleEventController.php:109
Example
php
add_filter('fluent_booking/available_slots_for_view', function ($value, ...$rest) {
return $value;
}, 10, 1 + count($rest ?? []));fluent_booking/fallback_timezone
- Type: filter
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Services/DateTimeHelper.php:85
Example
php
add_filter('fluent_booking/fallback_timezone', function ($value, ...$rest) {
return $value;
}, 10, 1 + count($rest ?? []));