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.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.php
28 lines
1 <?php
2
3 /**
4 * @see src/views/_main/main-navigation.php
5 * @see src/views/clone/index.php
6 */
7
8 use WPStaging\Core\WPStaging;
9
10 $urlAssets = trailingslashit(WPSTG_PLUGIN_URL) . 'assets/';
11 ?>
12 <div id="wpstg-report-issue-wrapper">
13 <button type="button" id="<?php echo defined('WPSTGPRO_VERSION') ? "wpstg-report-issue-button" : "wpstg-contact-us-button"; ?>" class="wpstg-report-issue-button">
14 <i class="wpstg-contact-us-icon">
15 <img class="wpstg--dashicons" src="<?php echo esc_url($urlAssets); ?>svg/contact-us.svg" alt="<?php esc_attr_e("Contact Us", "wp-staging"); ?>">
16 </i>
17 <span class="wpstg-contact-us-label"><?php echo esc_html__("Contact Us", "wp-staging"); ?></span>
18 </button>
19 <?php
20 if (WPStaging::isPro()) {
21 require_once(WPSTG_VIEWS_DIR . '_main/contact-us-pro.php');
22 } else {
23 require(WPSTG_VIEWS_DIR . '_main/contact-us-basic.php');
24 require(WPSTG_VIEWS_DIR . '_main/general-error-modal.php');
25 }
26 ?>
27 </div>
28