give_revenue = "{$wpdb->prefix}give_revenue"; } /** * @inheritDoc * * @since 4.14.0 rename delete_post handler to DeleteRevenueWhenDonationPostDeleted and add givewp_donation_deleted listener * @since 3.3.0 added support for givewp_donation_updated and updated give_updated_edited_donation implementation * @since 2.9.0 */ public function boot() { $this->registerMigrations(); Hooks::addAction('delete_post', DeleteRevenueWhenDonationPostDeleted::class); Hooks::addAction('givewp_donation_deleted', DeleteRevenueWhenDonationDeleted::class); Hooks::addAction('give_insert_payment', DonationHandler::class, 'handle', 999, 1); Hooks::addAction('give_register_updates', AddPastDonationsToRevenueTable::class, 'register', 10, 1); Hooks::addAction('givewp_donation_updated', UpdateRevenueWhenDonationUpdated::class); Hooks::addAction('give_updated_edited_donation',LegacyListeners\UpdateRevenueWhenDonationAmountUpdated::class); } /** * Registers database migrations with the MigrationsRunner */ private function registerMigrations() { /** @var MigrationsRegister $register */ $register = give(MigrationsRegister::class); $register->addMigrations( [ CreateRevenueTable::class, RemoveRevenueForeignKeys::class, ] ); } }