Miscellaneous Actions
Hooks that did not match a more specific action category.
10 unique action hooks currently map to this category, across 15 call sites.
Hook Inventory
| Hook | Edition | Call Sites | First Source |
|---|---|---|---|
fluent_booking/after_disconnect_remote_calendar | PRO | 1 | fluent-booking-pro/app/Http/Controllers/IntegrationSettingsController.php:151 |
fluent_booking/availability_schedules_query | Core | 1 | fluent-booking/app/Http/Controllers/AvailabilityController.php:38 |
fluent_booking/bookings_query | Core | 1 | fluent-booking/app/Http/Controllers/BookingController.php:349 |
fluent_booking/calendar | Core | 2 | fluent-booking/app/Http/Controllers/CalendarController.php:83 |
fluent_booking/calendar_slot | Core | 1 | fluent-booking/app/Http/Controllers/CalendarController.php:75 |
fluent_booking/format_booking_schedule | Core | 1 | fluent-booking/app/Http/Controllers/SchedulesController.php:554 |
fluent_booking/landing_page_event | Core | 1 | fluent-booking/app/Services/LandingPage/LandingPageHandler.php:154 |
fluent_booking/pre_after_booking_ | Core + PRO | 5 | fluent-booking/app/Http/Controllers/SchedulesController.php:318 |
fluent_booking/processed_event | Core | 1 | fluent-booking/app/Services/CalendarEventService.php:22 |
fluent_booking/schedules_query | Core | 1 | fluent-booking/app/Http/Controllers/SchedulesController.php:163 |
fluent_booking/after_disconnect_remote_calendar
- Type: action
- Edition: PRO
- Call sites: 1
Source locations
fluent-booking-pro/app/Http/Controllers/IntegrationSettingsController.php:151
Example
php
add_action('fluent_booking/after_disconnect_remote_calendar', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/availability_schedules_query
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Http/Controllers/AvailabilityController.php:38
Example
php
add_action('fluent_booking/availability_schedules_query', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/bookings_query
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Http/Controllers/BookingController.php:349
Example
php
add_action('fluent_booking/bookings_query', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/calendar
- Type: action
- Edition: Core
- Call sites: 2
Source locations
fluent-booking/app/Http/Controllers/CalendarController.php:83fluent-booking/app/Http/Controllers/CalendarController.php:372
Example
php
add_action('fluent_booking/calendar', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/calendar_slot
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Http/Controllers/CalendarController.php:75
Example
php
add_action('fluent_booking/calendar_slot', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/format_booking_schedule
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Http/Controllers/SchedulesController.php:554
Example
php
add_action('fluent_booking/format_booking_schedule', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/landing_page_event
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Services/LandingPage/LandingPageHandler.php:154
Example
php
add_action('fluent_booking/landing_page_event', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/pre_after_booking_
- Type: action
- Edition: Core + PRO
- Call sites: 5
Source locations
fluent-booking/app/Http/Controllers/SchedulesController.php:318fluent-booking/app/Services/BookingService.php:72fluent-booking/app/Services/Integrations/FluentCart/Bootstrap.php:308fluent-booking-pro/app/Services/Integrations/PaymentMethods/BasePaymentMethod.php:417fluent-booking-pro/app/Services/Integrations/Woo/Bootstrap.php:255
Example
php
add_action('fluent_booking/pre_after_booking_', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/processed_event
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Services/CalendarEventService.php:22
Example
php
add_action('fluent_booking/processed_event', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/schedules_query
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Http/Controllers/SchedulesController.php:163
Example
php
add_action('fluent_booking/schedules_query', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));