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 / RefreshLicensesForLastActiveDate.php

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

53 lines 1.3 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.8.0
9 */
10 class RefreshLicensesForLastActiveDate extends Migration
11 {
12 /**
13 * @since 4.8.0
14 */
15 public static function id(): string
16 {
17 return 'refresh-licenses-for-last-active-date';
18 }
19
20 /**
21 * @since 4.8.0
22 */
23 public static function title(): string
24 {
25 return 'Refresh Licenses to set Last Active license date';
26 }
27
28 /**
29 * @since 4.8.0
30 */
31 public static function timestamp(): int
32 {
33 return strtotime('2025-09-05 00:00:00');
34 }
35
36 /**
37 * This migration refreshes the stored licenses to ensure the grace period logic works
38 * correctly for existing installations that had active licenses before this feature was added.
39 *
40 * @since 4.8.0
41 */
42 public function run(): void
43 {
44 // Normally we avoid using production code within migrations, but this is a simple license refresh that will eventually be refreshed anyway.
45 // We check if the function exists now to avoid errors in case in the future, this function is not defined anymore.
46 if (function_exists('give_refresh_licenses')) {
47 give_refresh_licenses();
48 }
49 }
50 }
51
52
53