Files
medicalalert-web-reloaded/wp/wp-content/plugins/nginx-helper/admin/partials/nginx-helper-support-options.php
Jay Sharma 07f9307d0c Merged in feature/165-dev-dev01 (pull request #12)
auto-patch  165-dev-dev01-2023-12-27T21_44_36

* auto-patch  165-dev-dev01-2023-12-27T21_44_36
2023-12-27 21:46:01 +00:00

45 lines
1.2 KiB
PHP

<?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>