PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backup, Restore, Migration & Clone / 4.9.2
WP STAGING – WordPress Backup, Restore, Migration & Clone v4.9.2
4.9.2 4.9.1 4.9.0 4.8.1 trunk 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.10.0 3.2.0 3.3.1 3.3.2 3.3.3 3.4.1 3.4.3 3.5.0 3.6.0 3.7.1 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 4.0.0 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.2.0 4.2.1 4.3.0 4.3.1 4.3.2 4.4.0 4.5.0 4.6.0 4.7.0 4.7.1 4.7.2 4.7.3 4.8.0
wp-staging / views / _main / contact-us-basic.php
wp-staging / views / _main Last commit date
partials 1 day ago contact-us-basic.php 1 year ago contact-us-pro.php 3 months ago contact-us.php 1 year ago darkmode-toggle-button.php 4 months ago faq.php 3 months ago footer.php 2 weeks ago general-error-modal.php 1 year ago header.php 1 day ago main-navigation.php 1 year ago newsfeed.php 1 day ago
contact-us-basic.php
36 lines
1 <?php
2
3 use WPStaging\Framework\Facades\UI\Checkbox;
4
5 ?>
6 <div id="wpstg-contact-us-modal" class="wpstg-contact-us-modal">
7 <div class="wpstg-modal-content">
8 <?php require(WPSTG_VIEWS_DIR . '_main/partials/contact-us-header.php'); ?>
9 <?php require(WPSTG_VIEWS_DIR . '_main/partials/buy-or-open-forum.php'); ?>
10 <div class="wpstg-contact-us-report-issue">
11 <span class="wpstg-contact-us-basic-h1"><?php esc_html_e("Ask in the forum", "wp-staging"); ?></span>
12 <div class="wpstg-contact-us-troubleshot-container">
13 <h2><?php esc_html_e('Send troubleshooting data', "wp-staging"); ?></h2>
14 <p><?php esc_html_e('Send us system information and debug logs before opening a ticket so we can help investigate.', "wp-staging"); ?></p>
15 <div class="wpstg-contact-us-force-send-email-container">
16 <label for="wpstg-force-send-debug-log">
17 <?php Checkbox::render('wpstg-force-send-debug-log', 'wpstg-force-send-debug-log'); ?>
18 <?php esc_html_e('Force Send Debug Log', 'wp-staging') ?>
19 <div class="wpstg--tooltip">
20 <img class="wpstg--dashicons" src="<?php echo esc_url($urlAssets); ?>svg/info-outline.svg" alt="info"/>
21 <span class="wpstg--tooltiptext">
22 <?php esc_html_e('Use this option if you have already sent a debug log email and want to send it again within five minutes.', 'wp-staging');?>
23 </span>
24 </div>
25 </label>
26 </div>
27 <?php require(WPSTG_VIEWS_DIR . '_main/partials/share-debug-code.php'); ?>
28 </div>
29 </div>
30 <div class="wpstg-modal-footer"></div>
31 <div class="wpstg-contact-us-success-form">
32 <?php require(WPSTG_VIEWS_DIR . '_main/partials/contact-us-success.php'); ?>
33 </div>
34 </div>
35 </div>
36