-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathRevenueServiceProvider.php
60 lines (52 loc) · 1.81 KB
/
RevenueServiceProvider.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
namespace Give\Revenue;
use Give\Framework\Migrations\MigrationsRegister;
use Give\Helpers\Hooks;
use Give\Revenue\Listeners\DeleteRevenueWhenDonationDeleted;
use Give\Revenue\Listeners\UpdateRevenueWhenDonationUpdated;
use Give\Revenue\Migrations\AddPastDonationsToRevenueTable;
use Give\Revenue\Migrations\CreateRevenueTable;
use Give\Revenue\Migrations\RemoveRevenueForeignKeys;
use Give\ServiceProviders\ServiceProvider;
class RevenueServiceProvider implements ServiceProvider
{
/**
* @inheritDoc
*
* @since 2.9.0
*/
public function register()
{
global $wpdb;
$wpdb->give_revenue = "{$wpdb->prefix}give_revenue";
}
/**
* @inheritDoc
*
* @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', DeleteRevenueWhenDonationDeleted::class, '__invoke', 10, 1);
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,
]
);
}
}