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 / insights-support-ticket-form.php

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

63 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @see SE_License_SDK_Insights::deactivate_scripts()
4 * @var SE_License_SDK_Insights $this
5 */
6
7 if ( ! defined( 'ABSPATH' ) ) {
8 exit;
9 }
10 ?>
11 <div class="se-sdk-deactivation-modal--wrap support" style="display: none;">
12 <div class="se-sdk-deactivation-modal--header">
13 <h3><?php esc_html_e( 'Submit Support Ticket', 'storeengine-sdk' ); ?></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="se-sdk-row mui col-2 col-left">
22 <label for="<?php echo esc_attr( $this->client->getSlug() ); ?>-se-sdk-support--name" class="<?php echo ! empty( $displayName ) ? 'shrink' : ''; ?>"><?php esc_html_e( 'Name', 'storeengine-sdk' ); ?></label>
23 <div class="se-sdk-form-control">
24 <input type="text" name="name" id="<?php echo esc_attr( $this->client->getSlug() ); ?>-se-sdk-support--name" value="<?php echo esc_attr( $displayName ); ?>" required>
25 </div>
26 </div>
27 <div class="se-sdk-row mui col-2 col-right">
28 <label for="<?php echo esc_attr( $this->client->getSlug() ); ?>-se-sdk-support--email" class="shrink"><?php esc_html_e( 'Email', 'storeengine-sdk' ); ?></label>
29 <div class="se-sdk-form-control">
30 <input type="email" name="email" id="<?php echo esc_attr( $this->client->getSlug() ); ?>-se-sdk-support--email" value="<?php echo esc_attr( $admin_user->user_email ); ?>" required>
31 </div>
32 </div>
33 <div class="clear"></div>
34 <div class="se-sdk-row mui col-2 col-left">
35 <label for="<?php echo esc_attr( $this->client->getSlug() ); ?>-se-sdk-support--subject"><?php esc_html_e( 'Subject', 'storeengine-sdk' ); ?></label>
36 <div class="se-sdk-form-control">
37 <input type="text" name="subject" id="<?php echo esc_attr( $this->client->getSlug() ); ?>-se-sdk-support--subject" required>
38 </div>
39 </div>
40 <div class="se-sdk-row mui col-2 col-right">
41 <label for="<?php echo esc_attr( $this->client->getSlug() ); ?>-se-sdk-support--website" class="shrink"><?php esc_html_e( 'Website', 'storeengine-sdk' ); ?></label>
42 <div class="se-sdk-form-control">
43 <input type="url" name="website" id="<?php echo esc_attr( $this->client->getSlug() ); ?>-se-sdk-support--website" value="<?php echo esc_url( site_url() ); ?>" required>
44 </div>
45 </div>
46 <div class="clear"></div>
47 <div class="se-sdk-row mui">
48 <label for="<?php echo esc_attr( $this->client->getSlug() ); ?>-se-sdk-support--message"><?php esc_html_e( 'Message', 'storeengine-sdk' ); ?></label>
49 <div class="se-sdk-form-control">
50 <textarea id="<?php echo esc_attr( $this->client->getSlug() ); ?>-se-sdk-support--message" name='message' rows="11" required></textarea>
51 </div>
52 </div>
53 <div class="response">
54 <div class="wrapper"></div>
55 </div>
56 </div>
57 <div class="se-sdk-deactivation-modal--footer">
58 <button class="button send-ticket"><?php esc_html_e( 'Send Message', 'storeengine-sdk' ); ?></button>
59 <button class="button button-link close-ticket"><?php esc_html_e( 'Cancel', 'storeengine-sdk' ); ?></button>
60 </div>
61 </div>
62 <?php
63