PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.14.0
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.14.0
2.14.0 2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 All 81 releases
ablocks / vendor / storeengine / wordpress-sdk / views / deactivation-reasons.php

deactivation-reasons.php in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.14.0, at vendor/storeengine/wordpress-sdk/views/deactivation-reasons.php

53 lines 2.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit;
4 }
5 ?>
6 <div class="se-sdk-deactivation-modal--wrap reason">
7 <div class="se-sdk-deactivation-modal--header">
8 <h3>
9 <?php if ( $this->client->getProductLogo() ) { ?>
10 <img height="32" src="<?php echo esc_attr( $this->client->getProductLogo() ); ?>" alt="<?php echo esc_attr( $this->client->getPackageName() ); ?>">
11 <?php } ?>
12 <?php esc_html_e( 'Quick Feedback', 'storeengine-sdk' ); ?>
13 </h3>
14 <a href="javascript:void 0;" class="se-sdk-deactivation-modal--close" aria-label="<?php esc_attr_e( 'Close', 'storeengine-sdk' ); ?>">
15 <svg aria-hidden="true" focusable="false" viewBox="0 0 24 24">
16 <path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"></path>
17 </svg>
18 </a>
19 </div>
20 <div class="se-sdk-deactivation-modal--body">
21 <div class="feedback-message">
22 <?php printf(
23 __( 'If you have a moment, please let us know why you are deactivating %s.', 'storeengine-sdk' ),
24 '<strong>' . esc_html( $this->client->getPackageName() ) . '</strong>',
25 ); ?>
26 </div>
27 <div class="se-sdk-deactivation-modal--open-ticket">
28 <span><?php esc_html_e( 'If you face any issues, please create a support ticket', 'storeengine-sdk' ); ?></span>
29 <button class="open-ticket-form">
30 <?php esc_html_e( 'Open a Ticket', 'storeengine-sdk' ); ?>
31 <svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
32 <path d="M0.528636 0.528636C0.788986 0.268287 1.211 0.268287 1.47134 0.528636L5.47134 4.52864C5.73169 4.78899 5.73169 5.211 5.47134 5.47134L1.47134 9.47134C1.211 9.7317 0.788986 9.7317 0.528636 9.47134C0.268287 9.211 0.268287 8.78899 0.528636 8.52864L4.05728 4.99999L0.528636 1.47134C0.268287 1.211 0.268287 0.788986 0.528636 0.528636Z"/>
33 </svg>
34 </button>
35 </div>
36 <ul class="reasons">
37 <?php foreach ( $reasons as $reason ) { ?>
38 <li class="reason-item" data-type="<?php echo esc_attr( $reason['type'] ); ?>" data-placeholder="<?php echo esc_attr( $reason['placeholder'] ); ?>">
39 <label>
40 <input class="reason-type" type="radio" name="selected-reason" value="<?php echo esc_attr( $reason['id'] ); ?>"> <?php echo esc_html( $reason['text'] ); ?>
41 </label>
42 </li>
43 <?php } ?>
44 </ul>
45
46 </div>
47 <div class="se-sdk-deactivation-modal--footer">
48 <button class="button deactivate"><?php esc_html_e( 'Submit & Deactivate', 'storeengine-sdk' ); ?></button>
49 <button class="button button-link dont-bother-me"><?php esc_html_e( 'Skip & Deactivate', 'storeengine-sdk' ); ?></button>
50 </div>
51 </div>
52 <?php
53