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
DisplaySettingsButton.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Promotions\FreeAddonModal\Controllers; |
| 4 | |
| 5 | class DisplaySettingsButton |
| 6 | { |
| 7 | use CheckOfferStatus; |
| 8 | |
| 9 | /** |
| 10 | * @return void |
| 11 | */ |
| 12 | public function __invoke() |
| 13 | { |
| 14 | if ( !$this->displayOffer() ) { |
| 15 | return; |
| 16 | } |
| 17 | |
| 18 | $url = admin_url( 'edit.php?post_type=give_forms&page=give-add-ons&tab=3' ); |
| 19 | echo "<a class='give-green-button i-crown' href='$url' target='_blank'>Get a Free Add-On</a>"; |
| 20 | } |
| 21 | } |
| 22 |