PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 All 255 releases
give / src / License / Migrations / RefreshLicensesForPlatformFee.php

RefreshLicensesForPlatformFee.php in GiveWP – Donation Plugin and Fundraising Platform 4.16.9, at src/License/Migrations/RefreshLicensesForPlatformFee.php

50 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Give\License\Migrations;
4
5 use Give\Framework\Migrations\Contracts\Migration;
6
7 /**
8 * @since 4.3.0
9 */
10 class RefreshLicensesForPlatformFee extends Migration
11 {
12 /**
13 * @since 4.3.0
14 */
15 public static function id(): string
16 {
17 return 'refresh-licenses-for-platform-fee';
18 }
19
20 /**
21 * @since 4.3.0
22 */
23 public static function title(): string
24 {
25 return 'Refresh Licenses for Platform Fee';
26 }
27
28 /**
29 * @since 4.3.0
30 */
31 public static function timestamp(): int
32 {
33 return strtotime('2025-05-01 00:00:00');
34 }
35
36 /**
37 * This migration refreshes the stored licenses (making a request to the License Server API) to retrieve the new gateway_fee property.
38 *
39 * @since 4.3.0
40 */
41 public function run(): void
42 {
43 // Normally we avoid using production code within migrations, but this is a simple license refresh that will eventually be refreshed anyway.
44 // We check if the function exists now to avoid errors in case in the future, this function is not defined anymore.
45 if (function_exists('give_refresh_licenses')) {
46 give_refresh_licenses();
47 }
48 }
49 }
50