PluginProbe
YayMail – WooCommerce Email Customizer / 3.4.2
YayMail – WooCommerce Email Customizer v3.4.2
4.4.4 4.4.3 4.4.2 4.4.1 trunk 1.9.6 2.1.4 2.1.5 3.2.2 3.2.6 3.2.7.1 3.2.8.1 3.2.9 3.3 3.3.1 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4 3.4.1 3.4.2 3.4.3 All 55 releases
yaymail / includes / License / views / activate-card.php

activate-card.php in YayMail – WooCommerce Email Customizer 3.4.2, at includes/License/views/activate-card.php

40 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 $plugin_slug = $_plugin['slug'];
3 $plugin_name = $_plugin['name'];
4 $is_addon = false !== strpos( $plugin_slug, 'addon' );
5 $license = new \YayMail\License\License( 'yaymail' );
6 ?>
7 <div class="yaycommerce-license-card" id="<?php echo esc_attr( "{$plugin_slug}_license_card" ); ?>" style="<?php echo esc_attr( $is_addon ? 'order: 999;' : 'order: ' . YAYMAIL_MENU_ORDER . ';' ); ?>">
8 <div class="yaycommerce-license-card-header">
9 <div class="yaycommerce-license-card-title-wrapper">
10 <h3 class="yaycommerce-license-card-title yaycommerce-license-card-header-item">
11 <?php echo esc_html( "{$plugin_name} activation" ); ?>
12 </h3>
13 </div>
14 </div>
15 <div class="yaycommerce-license-card-body">
16 <label for="<?php echo esc_attr( "{$plugin_slug}_license_input" ); ?>"><?php echo esc_html( 'Your license key:' ); ?></label>
17 <div class="yaycommerce-license-input-row">
18 <input autocomplete="new-password" class="yaycommerce-license-input" type="password" id="<?php echo esc_attr( "{$plugin_slug}_license_input" ); ?>" value="" />
19 <button class="button-primary yaycommerce-activate-license-button" id="<?php echo esc_attr( "{$plugin_slug}_activate_button" ); ?>" data-plugin="<?php echo esc_attr( $plugin_slug ); ?>">
20 <span>Activate License</span>
21 <span class="activate-loading sync-loading">
22 <svg
23 data-v-7957300f=""
24 xmlns="http://www.w3.org/2000/svg"
25 viewBox="0 0 24 24"
26 >
27 <path
28 data-v-7957300f=""
29 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"
30 ></path>
31 </svg>
32 </span>
33 </button>
34 </div>
35 <div class="<?php echo esc_attr( $plugin_slug ); ?>-license-message yaycommerce-license-message"></div>
36 </div>
37 <div class="yaycommerce-license-card-footer">
38 </div>
39 </div>
40