Skip to content

Miscellaneous Actions

3 unique action hooks currently map to this category, across 3 call sites.

Hook Inventory

HookEditionCall SitesFirst Source
fluent_community/migration/after_delete_current_dataCore1fluent-community/Modules/Migrations/Helpers/BPMigratorHelper.php:669
fluent_community/migration/before_delete_current_dataCore1fluent-community/Modules/Migrations/Helpers/BPMigratorHelper.php:641
fluent_community/update_verification_failedPRO1fluent-community-pro/app/Services/PluginManager/UpdateVerifier.php:443

fluent_community/migration/after_delete_current_data

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

Call Sites

EditionSourceParameters
Corefluent-community/Modules/Migrations/Helpers/BPMigratorHelper.php:669$auditContext (mixed)

Example

php
add_action('fluent_community/migration/after_delete_current_data', function ($auditContext) {
}, 10, 1);

fluent_community/migration/before_delete_current_data

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

Call Sites

EditionSourceParameters
Corefluent-community/Modules/Migrations/Helpers/BPMigratorHelper.php:641$auditContext (mixed)

Example

php
add_action('fluent_community/migration/before_delete_current_data', function ($auditContext) {
}, 10, 1);

fluent_community/update_verification_failed

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

Call Sites

EditionSourceParameters
PROfluent-community-pro/app/Services/PluginManager/UpdateVerifier.php:443$this->slug (mixed)
$code (mixed)
$message (mixed)

Example

php
add_action('fluent_community/update_verification_failed', function ($slug, $code, $message) {
}, 10, 3);

FluentCommunity developer documentation