# powered-cache/1.2.2/includes/admin/settings/support.php

Powered Cache – Caching and Optimization for WordPress – Easily Improve PageSpeed &amp; Web Vitals Score, version 1.2.2. 96 lines.

- Page: https://pluginprobe.com/plugins/powered-cache/1.2.2/code/includes/admin/settings/support.php
- Raw: https://pluginprobe.com/plugins/powered-cache/1.2.2/raw/includes/admin/settings/support.php
- Modified: 2018-06-10T14:10:56+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/powered-cache/1.2.2/code/includes/admin/settings/support.php#L10-L20`.

```php
<?php
/**
 * Settings page template
 *
 * @package    PoweredCache
 * @subpackage PoweredCache/Settings
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>

<div class="meta-box-sortables ui-sortable">

	<div class="postbox">

		<div class="inside">
			<h1><?php _e( 'PoweredCache Support', 'powered-cache' ); ?></h1>
			<hr>

			<div id="powered-cache-premium-support">

				<div id="powered-cache-support-general-info">
					<?php echo sprintf( __( 'Welcome to Powered Cache support line. Direct support exclusive to paid users.
					If you are free user, please use community support on <a target="_blank" href="%s">WordPress.org</a> forums.', 'powered-cache' ), 'https://wordpress.org/support/plugin/powered-cache' ); ?>
				</div>
				<div id="form-message-placeholder"></div>

				<table class="form-table" id="support-form-table">
					<?php powered_cache_maybe_require_premium_html(); ?>

					<tbody>
					<tr>
						<th scope="row" style="vertical-align: middle"><label for="support_subject"><?php _e( 'Subject', 'powered-cache' ); ?></label></th>
						<td><label><input required="required" type="text" placeholder="<?php _e('What is the problem with?','powered-cache');?>" name="support_subject" id="support_subject" size="71" /></label></td>
					</tr>

					<tr>
						<th scope="row" style="vertical-align: middle"><label for="support_email"><?php _e( 'E-mail', 'powered-cache' ); ?></label></th>
						<td><label><input required="required" type="text" value="<?php esc_attr_e( get_bloginfo( 'admin_email' ), 'powered-cache' ); ?>" name="support_email" id="support_email" size="71" /></label></td>
					</tr>

					<tr>
						<th scope="row" style="vertical-align: middle"><label for="powered_cache_caching_status"><?php _e( 'Description', 'powered-cache' ); ?></label></th>
						<td>
							<label>
								<textarea id="support_description"  name="support_description" cols="70" rows="10">
<?php _e('What did you do?','powered-cache');?>

<?php _e('(If possible, provide a recipe for reproducing the error.)','powered-cache');?>



<?php _e('What did you expect to see?','powered-cache');?>


<?php _e('What did you see instead?','powered-cache');?>

								</textarea>
							</label>
						</td>
					</tr>
					<tr>
						<td></td>
						<td>
							<input type="checkbox" value="1" name="support-terms" id="support-terms" />
							<label for="support-terms">
								<small>
									<?php echo sprintf( __( 'I accept the <a href="%s" target="_blank">Privacy Policy </a> by submitting this form.', 'powered-cache' ), 'https://poweredcache.com/privacy/' ); ?>
									<br>
									<?php _e( 'This form will be sent site related information. (WordPress version, PHP version, active plugin etc...)', 'powered-cache' ); ?>
								</small>
							</label>
						</td>
					</tr>
					<tr>
						<td></td>
						<td>
							<button id="powered-cache-support-btn" class="button button-secondary" type="button" ><?php _e( 'Open new support ticket', 'powered-cache' ); ?></button>
						</td>
					</tr>
					</tbody>
				</table>

			</div>
		</div>
		<!-- .inside -->

	</div>
	<!-- .postbox -->

</div>

```
