CheckOfferStatus.php
4 years ago
CompleteRestApiEndpoint.php
4 years ago
DisplaySettingsButton.php
4 years ago
EnqueueModal.php
4 years ago
PreventFreshInstallPromotion.php
4 years ago
PreventFreshInstallPromotion.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Promotions\FreeAddonModal\Controllers; |
| 4 | |
| 5 | class PreventFreshInstallPromotion |
| 6 | { |
| 7 | /** |
| 8 | * Set the option to prevent |
| 9 | * |
| 10 | * @return void |
| 11 | */ |
| 12 | public function __invoke() |
| 13 | { |
| 14 | $upgrade = get_option('give_version_upgraded_from'); |
| 15 | |
| 16 | if ( ! $upgrade && ! get_option('give_free_addon_modal_displayed') ) { |
| 17 | update_option('give_free_addon_modal_displayed', 'prevent:1:' . GIVE_VERSION); |
| 18 | } |
| 19 | } |
| 20 | } |
| 21 |