rebase from live enviornment

This commit is contained in:
Rachit Bhargava
2024-01-09 22:14:20 -05:00
parent ff0b49a046
commit 3a22fcaa4a
15968 changed files with 2344674 additions and 45234 deletions

View File

@@ -0,0 +1,44 @@
<?php
/**
* Display support options of the plugin.
*
* This file is used to markup the admin-facing aspects of the plugin.
*
* @since 2.0.0
*
* @package nginx-helper
* @subpackage nginx-helper/admin/partials
*/
?>
<!-- This file should primarily consist of HTML with a little bit of PHP. -->
<div class="postbox">
<h3 class="hndle">
<span><?php esc_html_e( 'Support Forums', 'nginx-helper' ); ?></span>
</h3>
<div class="inside">
<table class="form-table">
<tr valign="top">
<th>
<?php esc_html_e( 'Free Support', 'nginx-helper' ); ?>
</th>
<td>
<a href="https://community.easyengine.io/c/wordpress-nginx/" title="<?php esc_attr_e( 'Free Support Forum', 'nginx-helper' ); ?>" target="_blank">
<?php esc_html_e( 'Link to forum', 'nginx-helper' ); ?>
</a>
</td>
</tr>
<tr valign="top">
<th>
<?php esc_html_e( 'Premium Support', 'nginx-helper' ); ?>
</th>
<td>
<a href="https://easyengine.io/contact/" title="<?php esc_attr_e( 'Premium Support Forum', 'nginx-helper' ); ?>" target="_blank">
<?php esc_html_e( 'Link to forum', 'nginx-helper' ); ?>
</a>
</td>
</tr>
</table>
</div>
</div>