help-page.php
4 months ago
license-activate-card.php
4 months ago
license-card.php
4 months ago
licenses-page.php
4 months ago
recommended-plugins-data.php
3 months ago
recommended-plugins-page.php
3 months ago
license-activate-card.php
52 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WhatsappScoped; |
| 4 | |
| 5 | /** |
| 6 | * License "activate" card — shown when license is not active yet. |
| 7 | * Expects in scope: $_plugin ['slug', 'name']. |
| 8 | * |
| 9 | * @package YayCommerce\AdminShell\Views |
| 10 | */ |
| 11 | \defined('ABSPATH') || exit; |
| 12 | $plugin_slug = $_plugin['slug']; |
| 13 | $plugin_name = $_plugin['name']; |
| 14 | ?> |
| 15 | <div class="yaycommerce-license-card" id="<?php |
| 16 | echo \esc_attr("{$plugin_slug}_license_card"); |
| 17 | ?>"> |
| 18 | <div class="yaycommerce-license-card-header"> |
| 19 | <h3 class="yaycommerce-license-card-title yaycommerce-license-card-header-item"> |
| 20 | <?php |
| 21 | echo \esc_html($plugin_name); |
| 22 | ?> |
| 23 | </h3> |
| 24 | </div> |
| 25 | <div class="yaycommerce-license-card-body"> |
| 26 | <label for="<?php |
| 27 | echo \esc_attr("{$plugin_slug}_license_input"); |
| 28 | ?>"><?php |
| 29 | \esc_html_e('Your license key:', 'yaycommerce'); |
| 30 | ?></label> |
| 31 | <div class="yaycommerce-license-input-row"> |
| 32 | <input type="password" autocomplete="new-password" id="<?php |
| 33 | echo \esc_attr("{$plugin_slug}_license_input"); |
| 34 | ?>" placeholder="<?php |
| 35 | \esc_attr_e('License key', 'yaycommerce'); |
| 36 | ?>"> |
| 37 | <button class="button button-primary yaycommerce-license-button yaycommerce-activate-license-button" data-plugin="<?php |
| 38 | echo \esc_attr($plugin_slug); |
| 39 | ?>"> |
| 40 | <span><?php |
| 41 | \esc_html_e('Activate License', 'yaycommerce'); |
| 42 | ?></span> |
| 43 | <span class="activate-loading sync-loading" style="display:none;"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.66 10.37a.62.62 0 00.07-.19l.75-4a1 1 0 00-2-.36l-.37 2a9.22 9.22 0 00-16.58.84 1 1 0 00.55 1.3 1 1 0 001.31-.55A7.08 7.08 0 0112.07 5a7.17 7.17 0 016.24 3.58l-1.65-.27a1 1 0 10-.32 2l4.25.71h.16a.93.93 0 00.34-.06.33.33 0 00.1-.06.78.78 0 00.2-.11l.08-.1a1.07 1.07 0 00.14-.16.58.58 0 00.05-.16zM19.88 14.07a1 1 0 00-1.31.56A7.08 7.08 0 0111.93 19a7.17 7.17 0 01-6.24-3.58l1.65.27h.16a1 1 0 00.16-2L3.41 13a.91.91 0 00-.33 0H3a1.15 1.15 0 00-.32.14 1 1 0 00-.18.18l-.09.1a.84.84 0 00-.07.19.44.44 0 00-.07.17l-.75 4a1 1 0 00.8 1.22h.18a1 1 0 001-.82l.37-2a9.22 9.22 0 0016.58-.83 1 1 0 00-.57-1.28z"></path></svg></span> |
| 44 | </button> |
| 45 | </div> |
| 46 | <div class="<?php |
| 47 | echo \esc_attr($plugin_slug); |
| 48 | ?>-license-message yaycommerce-license-message"></div> |
| 49 | </div> |
| 50 | </div> |
| 51 | <?php |
| 52 |