Skip to content

Admin & Configuration Filters

Filters affecting admin UI, menu items, dashboard widgets, and global defaults.

22 unique filter hooks currently map to this category, across 24 call sites.

Hook Inventory

HookEditionCall SitesFirst Source
fluent_booking/admin_base_urlCore1fluent-booking/app/Services/Helper.php:689
fluent_booking/admin_menu_itemsCore1fluent-booking/app/Hooks/Handlers/AdminMenuHandler.php:148
fluent_booking/admin_portal_varsCore1fluent-booking/app/Hooks/Handlers/AdminMenuHandler.php:152
fluent_booking/admin_varsCore1fluent-booking/app/Hooks/Handlers/AdminMenuHandler.php:364
fluent_booking/asset_listed_slugsCore2fluent-booking/app/Hooks/Handlers/AdminMenuHandler.php:209
fluent_booking/backend_sanitized_valuesCore1fluent-booking/app/Services/Helper.php:1182
fluent_booking/dashboard_noticesCore1fluent-booking/app/Hooks/Handlers/AdminMenuHandler.php:407
fluent_booking/dashboard_widgetsCore1fluent-booking/app/Http/Controllers/ReportController.php:94
fluent_booking/data_export_limitCore1fluent-booking/app/Http/Controllers/SchedulesController.php:56
fluent_booking/default_booking_filtersCore1fluent-booking/app/Services/Helper.php:2204
fluent_booking/default_coupon_dataPRO1fluent-booking-pro/app/Modules/Coupon/CouponService.php:11
fluent_booking/default_currency_settingsCore1fluent-booking/app/Services/CurrenciesHelper.php:13
fluent_booking/default_email_notification_settingsCore1fluent-booking/app/Services/Helper.php:1678
fluent_booking/default_paginationsCore1fluent-booking/app/Services/Helper.php:2214
fluent_booking/default_sms_notification_settingsPRO1fluent-booking-pro/app/Services/Integrations/Twilio/TwilioHelper.php:124
fluent_booking/default_terms_and_conditionsCore1fluent-booking/app/Services/Helper.php:1667
fluent_booking/editor_shortcodes_groupsCore1fluent-booking/app/Services/Helper.php:2011
fluent_booking/general_settingsCore1fluent-booking/app/Http/Controllers/SettingsController.php:92
fluent_booking/get_featuresCore1fluent-booking/app/Services/Helper.php:2339
fluent_booking/get_general_integration_feed_PRO1fluent-booking-pro/app/Http/Controllers/IntegrationSettingsController.php:185
fluent_booking/integrations_menu_itemsPRO1fluent-booking-pro/app/Http/Controllers/IntegrationSettingsController.php:41
fluent_booking/no_permission_messagePRO2fluent-booking-pro/app/Hooks/Handlers/FrontendRenderer.php:92

fluent_booking/admin_base_url

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Services/Helper.php:689

Example

php
add_filter('fluent_booking/admin_base_url', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/admin_menu_items

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Hooks/Handlers/AdminMenuHandler.php:148

Example

php
add_filter('fluent_booking/admin_menu_items', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/admin_portal_vars

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Hooks/Handlers/AdminMenuHandler.php:152

Example

php
add_filter('fluent_booking/admin_portal_vars', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/admin_vars

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Hooks/Handlers/AdminMenuHandler.php:364

Example

php
add_filter('fluent_booking/admin_vars', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/asset_listed_slugs

  • Type: filter
  • Edition: Core
  • Call sites: 2

Source locations

  • fluent-booking/app/Hooks/Handlers/AdminMenuHandler.php:209
  • fluent-booking/app/Hooks/Handlers/AdminMenuHandler.php:250

Example

php
add_filter('fluent_booking/asset_listed_slugs', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/backend_sanitized_values

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Services/Helper.php:1182

Example

php
add_filter('fluent_booking/backend_sanitized_values', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/dashboard_notices

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Hooks/Handlers/AdminMenuHandler.php:407

Example

php
add_filter('fluent_booking/dashboard_notices', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/dashboard_widgets

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Http/Controllers/ReportController.php:94

Example

php
add_filter('fluent_booking/dashboard_widgets', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/data_export_limit

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Http/Controllers/SchedulesController.php:56

Example

php
add_filter('fluent_booking/data_export_limit', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/default_booking_filters

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Services/Helper.php:2204

Example

php
add_filter('fluent_booking/default_booking_filters', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/default_coupon_data

  • Type: filter
  • Edition: PRO
  • Call sites: 1

Source locations

  • fluent-booking-pro/app/Modules/Coupon/CouponService.php:11

Example

php
add_filter('fluent_booking/default_coupon_data', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/default_currency_settings

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Services/CurrenciesHelper.php:13

Example

php
add_filter('fluent_booking/default_currency_settings', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/default_email_notification_settings

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Services/Helper.php:1678

Example

php
add_filter('fluent_booking/default_email_notification_settings', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/default_paginations

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Services/Helper.php:2214

Example

php
add_filter('fluent_booking/default_paginations', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/default_sms_notification_settings

  • Type: filter
  • Edition: PRO
  • Call sites: 1

Source locations

  • fluent-booking-pro/app/Services/Integrations/Twilio/TwilioHelper.php:124

Example

php
add_filter('fluent_booking/default_sms_notification_settings', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/default_terms_and_conditions

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Services/Helper.php:1667

Example

php
add_filter('fluent_booking/default_terms_and_conditions', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/editor_shortcodes_groups

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Services/Helper.php:2011

Example

php
add_filter('fluent_booking/editor_shortcodes_groups', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/general_settings

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Http/Controllers/SettingsController.php:92

Example

php
add_filter('fluent_booking/general_settings', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/get_features

  • Type: filter
  • Edition: Core
  • Call sites: 1

Source locations

  • fluent-booking/app/Services/Helper.php:2339

Example

php
add_filter('fluent_booking/get_features', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/get_general_integration_feed_

  • Type: filter
  • Edition: PRO
  • Call sites: 1

Source locations

  • fluent-booking-pro/app/Http/Controllers/IntegrationSettingsController.php:185

Example

php
add_filter('fluent_booking/get_general_integration_feed_', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/integrations_menu_items

  • Type: filter
  • Edition: PRO
  • Call sites: 1

Source locations

  • fluent-booking-pro/app/Http/Controllers/IntegrationSettingsController.php:41

Example

php
add_filter('fluent_booking/integrations_menu_items', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));

fluent_booking/no_permission_message

  • Type: filter
  • Edition: PRO
  • Call sites: 2

Source locations

  • fluent-booking-pro/app/Hooks/Handlers/FrontendRenderer.php:92
  • fluent-booking-pro/app/Hooks/Handlers/FrontendRenderer.php:123

Example

php
add_filter('fluent_booking/no_permission_message', function ($value, ...$rest) {
    return $value;
}, 10, 1 + count($rest ?? []));