Miscellaneous Actions
3 unique action hooks currently map to this category, across 3 call sites.
Hook Inventory
| Hook | Edition | Call Sites | First Source |
|---|---|---|---|
fluent_community/migration/after_delete_current_data | Core | 1 | fluent-community/Modules/Migrations/Helpers/BPMigratorHelper.php:669 |
fluent_community/migration/before_delete_current_data | Core | 1 | fluent-community/Modules/Migrations/Helpers/BPMigratorHelper.php:641 |
fluent_community/update_verification_failed | PRO | 1 | fluent-community-pro/app/Services/PluginManager/UpdateVerifier.php:443 |
fluent_community/migration/after_delete_current_data
- Type: action
- Edition: Core
- Call sites: 1
Call Sites
| Edition | Source | Parameters |
|---|---|---|
| Core | fluent-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
| Edition | Source | Parameters |
|---|---|---|
| Core | fluent-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
| Edition | Source | Parameters |
|---|---|---|
| PRO | fluent-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);