Modules
5 months ago
Form_Field.php
5 months ago
Form_Field_Option.php
1 year ago
Module_Refresh_Job.php
1 year ago
Overview.php
1 year ago
WP_Options_Storage.php
9 months ago
Module_Refresh_Job.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP\Overview; |
| 4 | |
| 5 | use IAWP\Cron_Job; |
| 6 | /** @internal */ |
| 7 | class Module_Refresh_Job extends Cron_Job |
| 8 | { |
| 9 | protected $name = 'iawp_module_refresh'; |
| 10 | protected $interval = 'hourly'; |
| 11 | public function handle() : void |
| 12 | { |
| 13 | \update_option('iawp_should_refresh_modules', '1', \true); |
| 14 | } |
| 15 | } |
| 16 |