| 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 |
|