Skip to content

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

HookEditionCall SitesFirst Source
fluent_booking/after_disconnect_remote_calendarPRO1fluent-booking-pro/app/Http/Controllers/IntegrationSettingsController.php:151
fluent_booking/availability_schedules_queryCore1fluent-booking/app/Http/Controllers/AvailabilityController.php:38
fluent_booking/bookings_queryCore1fluent-booking/app/Http/Controllers/BookingController.php:349
fluent_booking/calendarCore2fluent-booking/app/Http/Controllers/CalendarController.php:83
fluent_booking/calendar_slotCore1fluent-booking/app/Http/Controllers/CalendarController.php:75
fluent_booking/format_booking_scheduleCore1fluent-booking/app/Http/Controllers/SchedulesController.php:554
fluent_booking/landing_page_eventCore1fluent-booking/app/Services/LandingPage/LandingPageHandler.php:154
fluent_booking/pre_after_booking_Core + PRO5fluent-booking/app/Http/Controllers/SchedulesController.php:318
fluent_booking/processed_eventCore1fluent-booking/app/Services/CalendarEventService.php:22
fluent_booking/schedules_queryCore1fluent-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:83
  • fluent-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:318
  • fluent-booking/app/Services/BookingService.php:72
  • fluent-booking/app/Services/Integrations/FluentCart/Bootstrap.php:308
  • fluent-booking-pro/app/Services/Integrations/PaymentMethods/BasePaymentMethod.php:417
  • fluent-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 ?? []));