Current Path : /storage/v11800/affypharma/public_html/wp-content/plugins/w3-total-cache/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/affypharma/public_html/wp-content/plugins/w3-total-cache/Extension_CloudFlare_Page_View.php
<?php
namespace W3TC;

if ( ! defined( 'W3TC' ) ) {
	die();
}
?>
<p>
	<?php esc_html_e( 'Cloudflare extension is currently ', 'w3-total-cache' ); ?>
	<?php
	if ( $config->is_extension_active_frontend( 'cloudflare' ) ) {
		echo '<span class="w3tc-enabled">' . esc_html__( 'enabled', 'w3-total-cache' ) . '</span>';
	} else {
		echo '<span class="w3tc-disabled">' . esc_html__( 'disabled', 'w3-total-cache' ) . '</span>';
	}
	?>
	.
<p>

<form action="admin.php?page=w3tc_extensions&amp;extension=cloudflare&amp;action=view" method="post">
	<p>
		<?php
		echo wp_kses(
			Util_Ui::nonce_field( 'w3tc' ),
			array(
				'input' => array(
					'type'  => array(),
					'name'  => array(),
					'value' => array(),
				),
			)
		);
		?>
		<input type="submit" name="w3tc_cloudflare_flush" value="<?php esc_html_e( 'Purge Cloudflare cache', 'w3-total-cache' ); ?>" class="button" />
		<?php esc_html_e( 'if needed.', 'w3-total-cache' ); ?>
	</p>
</form>

<form action="admin.php?page=w3tc_extensions&amp;extension=cloudflare&amp;action=view" method="post">
	<?php Util_UI::print_control_bar( 'extension_cloudflare_form_control' ); ?>
	<div class="metabox-holder">
		<?php Util_Ui::postbox_header( esc_html__( 'Credentials', 'w3-total-cache' ), '', 'credentials' ); ?>
		<table class="form-table">
			<tr>
				<th style="width: 300px;">
					<label>
						<?php
						esc_html_e( 'Specify account credentials:', 'w3-total-cache' );
						?>
					</label>
				</th>
				<td>
					<?php if ( 'not_cofigured' !== $state ) : ?>
						<input class="w3tc_extension_cloudflare_authorize button-primary"
							type="button"
							value="<?php esc_attr_e( 'Reauthorize', 'w3-total-cache' ); ?>"
							/>
					<?php else : ?>
						<input class="w3tc_extension_cloudflare_authorize button-primary"
							type="button"
							value="<?php esc_attr_e( 'Authorize', 'w3-total-cache' ); ?>"
							/>
					<?php endif ?>
				</td>
			</tr>

			<?php if ( 'not_configured' !== $state ) : ?>
				<tr>
					<th>
						<label><?php esc_attr_e( 'Zone:', 'w3-total-cache' ); ?></label>
					</th>
					<td class="w3tc_config_value_text">
						<?php echo esc_html( $config->get_string( array( 'cloudflare', 'zone_name' ) ) ); ?>
					</td>
				</tr>
			<?php endif ?>
		</table>
		<?php Util_Ui::postbox_footer(); ?>

		<?php Util_Ui::postbox_header( esc_html__( 'General', 'w3-total-cache' ), '', 'general' ); ?>
		<?php if ( 'not_configured' === $state ) : ?>
			<table class="form-table">
				<tr>
					<td colspan="2">
						<?php esc_html_e( 'Authenticate your account in order to access settings.', 'w3-total-cache' ); ?>
					</td>
				</tr>
			</table>
		<?php elseif ( 'not_available' === $state ) : ?>
			<table class="form-table">
				<tr>
					<td colspan="2">
						<?php esc_html__( 'Cloudflare not available: ', 'w3-total-cache' ) . esc_html( $error_message ); ?>
					</td>
				</tr>
			</table>
		<?php elseif ( 'available' === $state ) : ?>
			<table class="form-table">
				<?php
				Util_Ui::config_item(
					array(
						'key'              => array( 'cloudflare', 'widget_interval' ),
						'label'            => esc_html__( 'Widget statistics interval:', 'w3-total-cache' ),
						'control'          => 'selectbox',
						'selectbox_values' => array(
							'-30'    => esc_html__( 'Last 30 minutes', 'w3-total-cache' ),
							'-360'   => esc_html__( 'Last 6 hours', 'w3-total-cache' ),
							'-720'   => esc_html__( 'Last 12 hours', 'w3-total-cache' ),
							'-1440'  => esc_html__( 'Last 24 hours', 'w3-total-cache' ),
							'-10080' => esc_html__( 'Last week', 'w3-total-cache' ),
							'-43200' => esc_html__( 'Last month', 'w3-total-cache' ),
						),
					)
				);

				Util_Ui::config_item(
					array(
						'key'         => array( 'cloudflare', 'widget_cache_mins' ),
						'label'       => esc_html__( 'Cache time:', 'w3-total-cache' ),
						'control'     => 'textbox',
						'description' => esc_html__( 'How many minutes data retrieved from Cloudflare: should be stored. Minimum is 1 minute.', 'w3-total-cache' ),
					)
				);

				Util_Ui::config_item(
					array(
						'key'            => array( 'cloudflare', 'pagecache' ),
						'label'          => esc_html__( 'Page caching:', 'w3-total-cache' ),
						'control'        => 'checkbox',
						'checkbox_label' => esc_html__( 'Flush Cloudflare on Post Modifications:', 'w3-total-cache' ),
						'description'    => esc_html__( 'Enable when you have html pages cached on Cloudflare level.', 'w3-total-cache' ),
					)
				);

				Util_Ui::config_item(
					array(
						'key'            => array( 'cloudflare', 'minify_js_rl_exclude' ),
						'label'          => esc_html__( 'Minified JS Rocket Loader Exclude:', 'w3-total-cache' ),
						'checkbox_label' => esc_html__( 'Exclude minified JS files from being processed by Rocket Loader:', 'w3-total-cache' ),
						'control'        => 'checkbox',
						'description'    => esc_html__( 'Exclusion achieved by adding data-cfasync="false" to script tags.', 'w3-total-cache' ),
					)
				);
				?>
			</table>
		<?php endif; ?>

		<?php Util_Ui::postbox_footer(); ?>


		<?php if ( 'available' === $state ) : ?>
			<?php Util_Ui::postbox_header( esc_html__( 'Cloudflare: Caching', 'w3-total-cache' ), '', 'general' ); ?>
			<table class="form-table">
				<?php
				self::cloudflare_checkbox(
					$settings,
					array(
						'key'         => 'development_mode',
						'label'       => esc_html__( 'Development mode:', 'w3-total-cache' ),
						'description' => esc_html__( 'Development Mode temporarily allows you to enter development mode for your websites if you need to make changes to your site. This will bypass Cloudflare\'s accelerated cache and slow down your site, but is useful if you are making changes to cacheable content (like images, css, or JavaScript) and would like to see those changes right away.', 'w3-total-cache' ),
					)
				);
				self::cloudflare_selectbox(
					$settings,
					array(
						'key'         => 'cache_level',
						'label'       => esc_html__( 'Cache level:', 'w3-total-cache' ),
						'values'      => array(
							''           => '',
							'aggressive' => esc_html__( 'Aggressive (cache all static resources, including ones with a query string)', 'w3-total-cache' ),
							'basic'      => esc_html__( 'Basic (cache most static resources (i.e., css, images, and JavaScript)', 'w3-total-cache' ),
							'simplified' => esc_html__( 'Simplified (ignore the query string when delivering a cached resource)', 'w3-total-cache' ),
						),
						'description' => esc_html__( 'How the content is cached by Cloudflare', 'w3-total-cache' ),
					)
				);
				self::cloudflare_checkbox(
					$settings,
					array(
						'key'         => 'sort_query_string_for_cache',
						'label'       => esc_html__( 'Query string sorting:', 'w3-total-cache' ),
						'description' => esc_html__( 'Cloudflare will treat files with the same query strings as the same file in cache, regardless of the order of the query strings.', 'w3-total-cache' ),
					)
				);
				self::cloudflare_selectbox(
					$settings,
					array(
						'key'         => 'browser_cache_ttl',
						'label'       => wp_kses(
							sprintf(
								// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
								__(
									'Browser cache %1$sTTL%2$s:',
									'w3-total-cache'
								),
								'<acronym title="' . esc_attr__( 'Time-to-Live', 'w3-total-cache' ) . '">',
								'</acronym>'
							),
							array(
								'acronym' => array(
									'title' => array(),
								),
							)
						),
						'values'      => array(
							'0'        => esc_html__( 'Respect Existing Headers', 'w3-total-cache' ),
							'30'       => '30',
							'60'       => '60',
							'120'      => '120',
							'300'      => '300',
							'1200'     => '1200',
							'1800'     => '1800',
							'3600'     => '3600',
							'7200'     => '7200',
							'10800'    => '10800',
							'14400'    => '14400',
							'18000'    => '18000',
							'28800'    => '28800',
							'43200'    => '43200',
							'57600'    => '57600',
							'72000'    => '72000',
							'86400'    => '86400',
							'172800'   => '172800',
							'259200'   => '259200',
							'345600'   => '345600',
							'432000'   => '432000',
							'691200'   => '691200',
							'1382400'  => '1382400',
							'2073600'  => '2073600',
							'2678400'  => '2678400',
							'5356800'  => '5356800',
							'16070400' => '16070400',
							'31536000' => '31536000',
						),
						'description' => wp_kses(
							sprintf(
								// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag, 3 opening HTML a tag, 4 closing HTML a tag.
								__(
									'Browser cache %1$sTTL%2$s (in seconds) specifies how long Cloudflare cached resources will remain on your visitors\' computers. See %3$sFeatures by plan type%4$s for acceptable minimum values based on subscription type.',
									'w3-total-cache'
								),
								'<acronym title="' . esc_attr__( 'Time-to-Live', 'w3-total-cache' ) . '">',
								'</acronym>',
								'<a target="_blank" href="' . esc_url( 'https://developers.cloudflare.com/cache/plans/' ) . '">',
								'</a>'
							),
							array(
								'acronym' => array(
									'title' => array(),
								),
								'a'       => array(
									'href'   => array(),
									'target' => array(),
								),
							)
						),
					)
				);
				self::cloudflare_selectbox(
					$settings,
					array(
						'key'         => 'challenge_ttl',
						'label'       => wp_kses(
							sprintf(
								// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
								__(
									'Challenge %1$sTTL%2$s:',
									'w3-total-cache'
								),
								'<acronym title="' . esc_attr__( 'Time-to-Live', 'w3-total-cache' ) . '">',
								'</acronym>'
							),
							array(
								'acronym' => array(
									'title' => array(),
								),
							)
						),
						'values'      => array(
							'300'      => '300',
							'900'      => '900',
							'1800'     => '1800',
							'2700'     => '2700',
							'3600'     => '3600',
							'7200'     => '7200',
							'10800'    => '10800',
							'14400'    => '14400',
							'28800'    => '28800',
							'57600'    => '57600',
							'86400'    => '86400',
							'604800'   => '604800',
							'2592000'  => '2592000',
							'31536000' => '31536000',
						),
						'description' => wp_kses(
							sprintf(
								// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
								__(
									'Specify how long a visitor is allowed access to your site after successfully completing a challenge (such as a CAPTCHA). After the %1$sTTL%2$s has expired the visitor will have to complete a new challenge.',
									'w3-total-cache'
								),
								'<acronym title="' . esc_attr__( 'Time-to-Live', 'w3-total-cache' ) . '">',
								'</acronym>'
							),
							array(
								'acronym' => array(
									'title' => array(),
								),
							)
						),
					)
				);
				self::cloudflare_selectbox(
					$settings,
					array(
						'key'         => 'edge_cache_ttl',
						'label'       => esc_html__( 'Edge cache TTL:', 'w3-total-cache' ),
						'values'      => array(
							'1'        => '1',
							'30'       => '30',
							'60'       => '60',
							'300'      => '300',
							'1200'     => '1200',
							'1800'     => '1800',
							'3600'     => '3600',
							'7200'     => '7200',
							'10800'    => '10800',
							'14400'    => '14400',
							'18000'    => '18000',
							'28800'    => '28800',
							'43200'    => '43200',
							'57600'    => '57600',
							'72000'    => '72000',
							'86400'    => '86400',
							'172800'   => '172800',
							'259200'   => '259200',
							'345600'   => '345600',
							'432000'   => '432000',
							'691200'   => '691200',
							'1382400'  => '1382400',
							'2073600'  => '2073600',
							'2678400'  => '2678400',
							'5356800'  => '5356800',
							'16070400' => '16070400',
							'31536000' => '31536000',
						),
						'description' => wp_kses(
							sprintf(
								// translators: 1 opening HTML a tag, 2 closing HTML a tag.
								__(
									'Controls how long Cloudflare\'s edge servers will cache a resource before getting back to your server for a fresh copy. See %1$sFeatures by plan type%2$s for acceptable minimum values based on subscription type.',
									'w3-total-cache'
								),
								'<a target="_blank" href="' . esc_url( 'https://developers.cloudflare.com/cache/plans/' ) . '">',
								'</a>'
							),
							array(
								'a' => array(
									'href'   => array(),
									'target' => array(),
								),
							)
						),
					)
				);
				?>
			</table>
			<?php
			Util_Ui::postbox_footer();

			Util_Ui::postbox_header( esc_html__( 'Cloudflare: Content Processing', 'w3-total-cache' ), '', 'general' );
			echo '<table class="form-table">';
			self::cloudflare_selectbox(
				$settings,
				array(
					'key'         => 'rocket_loader',
					'label'       => esc_html__( 'Rocket Loader:', 'w3-total-cache' ),
					'values'      => array(
						''       => '',
						'off'    => esc_html__( 'Off', 'w3-total-cache' ),
						'on'     => esc_html__( 'On (automatically run on the JavaScript resources on your site)', 'w3-total-cache' ),
						'manual' => esc_html__( 'Manual (run when attribute present only)', 'w3-total-cache' ),
					),
					'description' => esc_html__( 'Rocket Loader is a general-purpose asynchronous JavaScript loader coupled with a lightweight virtual browser which can safely run any JavaScript code after window.onload.', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'minify_js',
					'label'       => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'Minify %1$sJS%2$s:',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'JavaScript', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
					'description' => esc_html__( 'Minify JavaScript files.', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'minify_css',
					'label'       => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'Minify %1$sCSS%2$s:',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'Cascading Style Sheet', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
					'description' => 'Minify CSS files.',
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'minify_html',
					'label'       => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'Minify %1$sHTML%2$s:',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'HyperText Markup Language', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
					'description' => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'Minify %1$sHTML%2$s content.',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'HyperText Markup Language', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'server_side_exclude',
					'label'       => esc_html__( 'Server side exclude:', 'w3-total-cache' ),
					'description' => esc_html__( 'If there is sensitive content on your website that you want visible to real visitors, but that you want to hide from suspicious visitors, all you have to do is wrap the content with Cloudflare SSE tags.', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'email_obfuscation',
					'label'       => esc_html__( 'Email obfuscation:', 'w3-total-cache' ),
					'description' => esc_html__( 'Encrypt email adresses on your web page from bots, while keeping them visible to humans. ', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'response_buffering',
					'label'       => esc_html__( 'Response buffering"', 'w3-total-cache' ),
					'description' => esc_html__( 'Cloudflare may buffer the whole payload to deliver it at once to the client versus allowing it to be delivered in chunks.', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'prefetch_preload',
					'label'       => esc_html__( 'Prefetch preload:', 'w3-total-cache' ),
					'description' => esc_html__( 'Cloudflare will prefetch any URLs that are included in the response headers.', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'mobile_redirect',
					'label'       => esc_html__( 'Mobile redirect:', 'w3-total-cache' ),
					'description' => esc_html__( 'Automatically redirect visitors on mobile devices to a mobile-optimized subdomain', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'origin_error_page_pass_thru',
					'label'       => esc_html__( 'Enable error pages:', 'w3-total-cache' ),
					'description' => esc_html__( 'Cloudflare will proxy customer error pages on any 502,504 errors on origin server instead of showing a default Cloudflare error page. This does not apply to 522 errors and is limited to Enterprise Zones.', 'w3-total-cache' ),
				)
			);
			echo '</table>';
			Util_Ui::postbox_footer();

			Util_Ui::postbox_header( esc_html__( 'Cloudflare: Image Processing', 'w3-total-cache' ), '', 'general' );
			echo '<table class="form-table">';
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'hotlink_protection',
					'label'       => esc_html__( 'Hotlink protection:', 'w3-total-cache' ),
					'description' => esc_html__( 'When enabled, the Hotlink Protection option ensures that other sites cannot suck up your bandwidth by building pages that use images hosted on your site.', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'mirage',
					'label'       => esc_html__( 'Mirage:', 'w3-total-cache' ),
					'description' => esc_html__( 'Automatically optimize image loading for website visitors on mobile devices', 'w3-total-cache' ),
				)
			);
			self::cloudflare_selectbox(
				$settings,
				array(
					'key'         => 'polish',
					'label'       => esc_html__( 'Images polishing:', 'w3-total-cache' ),
					'values'      => array(
						''         => '',
						'off'      => esc_html__( 'Off', 'w3-total-cache' ),
						'lossless' => esc_html__( 'Lossless (Reduce the size of PNG, JPEG, and GIF files - no impact on visual quality)', 'w3-total-cache' ),
						'lossy'    => esc_html__( 'Lossy (Further reduce the size of JPEG files for faster image loading)', 'w3-total-cache' ),
					),
					'description' => esc_html__( 'Strips metadata and compresses your images for faster page load times.', 'w3-total-cache' ),
				)
			);
			echo '</table>';
			Util_Ui::postbox_footer();

			Util_Ui::postbox_header( esc_html__( 'Cloudflare: Protection', 'w3-total-cache' ), '', 'general' );
			echo '<table class="form-table">';
			self::cloudflare_selectbox(
				$settings,
				array(
					'key'         => 'security_level',
					'label'       => esc_html__( 'Security level:', 'w3-total-cache' ),
					'values'      => array(
						''                => '',
						'essentially_off' => esc_html__( 'Off', 'w3-total-cache' ),
						'low'             => esc_html__( 'Low', 'w3-total-cache' ),
						'medium'          => esc_html__( 'Medium', 'w3-total-cache' ),
						'high'            => esc_html__( 'High', 'w3-total-cache' ),
						'under_attack'    => esc_html__( 'Under Attack', 'w3-total-cache' ),
					),
					'description' => esc_html__( 'security profile for your website, which will automatically adjust each of the security settings.', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'browser_check',
					'label'       => esc_html__( 'Browser integrity check:', 'w3-total-cache' ),
					'description' => esc_html__( 'Browser Integrity Check is similar to Bad Behavior and looks for common HTTP headers abused most commonly by spammers and denies access to your page. It will also challenge visitors that do not have a user agent or a non standard user agent (also commonly used by abuse bots, crawlers or visitors).', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'always_online',
					'label'       => esc_html__( 'Always online:', 'w3-total-cache' ),
					'description' => esc_html__( 'When enabled, Always Online will serve pages from our cache if your server is offline', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'waf',
					'label'       => esc_html__( 'Web application firewall:', 'w3-total-cache' ),
					'description' => esc_html__( 'The Web Application Firewall (WAF) examines HTTP requests to your website. It inspects both GET and POST requests and applies rules to help filter out illegitimate traffic from legitimate website visitors.', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'advanced_ddos',
					'label'       => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'Advanced %1$sDDoS%2$s protection:',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'Distributed Denial of Service', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
					'description' => esc_html__( 'Advanced protection from Distributed Denial of Service (DDoS) attacks on your website.', 'w3-total-cache' ),
				)
			);
			self::cloudflare_selectbox(
				$settings,
				array(
					'key'         => 'max_upload',
					'label'       => esc_html__( 'Max upload:', 'w3-total-cache' ),
					'values'      => array(
						'100' => '100 MB',
						'125' => '125 MB (Business+)',
						'150' => '150 MB (Business+)',
						'175' => '175 MB (Business+)',
						'200' => '200 MB (Business+)',
						'225' => '225 MB (Enterprise)',
						'250' => '250 MB (Enterprise)',
						'275' => '275 MB (Enterprise)',
						'300' => '300 MB (Enterprise)',
						'325' => '325 MB (Enterprise)',
						'350' => '350 MB (Enterprise)',
						'375' => '375 MB (Enterprise)',
						'400' => '400 MB (Enterprise)',
						'425' => '425 MB (Enterprise)',
						'450' => '450 MB (Enterprise)',
						'475' => '475 MB (Enterprise)',
						'500' => '500 MB (Enterprise)',
					),
					'description' => esc_html__( 'Max size of file allowed for uploading', 'w3-total-cache' ),
				)
			);
			echo '</table>';
			Util_Ui::postbox_footer();

			Util_Ui::postbox_header(
				wp_kses(
					sprintf(
						// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
						__(
							'Cloudflare: %1$sIP%2$s',
							'w3-total-cache'
						),
						'<acronym title="' . esc_attr__( 'Internet Protocol', 'w3-total-cache' ) . '">',
						'</acornym>'
					),
					array(
						'acronym' => array(
							'title' => array(),
						),
					)
				),
				'',
				'general'
			);
			echo '<table class="form-table">';
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'ip_geolocation',
					'label'       => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'%1$sIP%2$s geolocation:',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'Internet Protocol', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
					'description' => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'Enable %1$sIP%2$s Geolocation to have Cloudflare geolocate visitors to your website and pass the country code to you.',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'Internet Protocol', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'ipv6',
					'label'       => esc_html__( 'IPv6:', 'w3-total-cache' ),
					'description' => esc_html__( 'Enable IPv6.', 'w3-total-cache' ),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'true_client_ip_header',
					'label'       => esc_html__( 'True client IP:', 'w3-total-cache' ),
					'description' => esc_html__( 'Allows customer to continue to use True Client IP (Akamai feature) in the headers we send to the origin.', 'w3-total-cache' ),
				)
			);
			echo '</table>';
			Util_Ui::postbox_footer();

			Util_Ui::postbox_header(
				wp_kses(
					sprintf(
						// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
						__(
							'Cloudflare: %1$sSSL%2$s',
							'w3-total-cache'
						),
						'<acronym title="' . esc_attr__( 'Secure Sockets Layer', 'w3-total-cache' ) . '">',
						'</acronym>'
					),
					array(
						'acronym' => array(
							'title' => array(),
						),
					)
				),
				'',
				'general'
			);
			echo '<table class="form-table">';
			self::cloudflare_selectbox(
				$settings,
				array(
					'key'         => 'ssl',
					'label'       => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'%1$sSSL%2$s:',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'Secure Sockets Layer">', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
					'values'      => array(
						''            => '',
						'off'         => esc_html__( 'Off', 'w3-total-cache' ),
						'flexible'    => esc_html__( 'Flexible (HTTPS to end-user only)', 'w3-total-cache' ),
						'full'        => esc_html__( 'Full (https everywhere)', 'w3-total-cache' ),
						'full_strict' => esc_html__( 'Strict', 'w3-total-cache' ),
					),
					'description' => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'%1$sSSL%2$s encrypts your visitor\'s connection and safeguards credit card numbers and other personal data to and from your website.',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'Secure Sockets Layer', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'security_header',
					'label'       => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'Security header (%1$sSSL%2$s):',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'Secure Sockets Layer', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
					'description' => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'Enables or disables %1$sSSL%2$s header.',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'Secure Sockets Layer', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'tls_1_2_only',
					'label'       => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'%1$sTLS%2$s 1.2 only:',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'Transport Layer Security', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
					'description' => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'Enable Crypto %1$sTLS%2$s 1.2 feature for this zone and prevent use of previous versions.',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'Transport Layer Security', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
				)
			);
			self::cloudflare_checkbox(
				$settings,
				array(
					'key'         => 'tls_client_auth',
					'label'       => '<acronym title="Transport Layer Security">TLS</acronym> client auth:',
					'description' => wp_kses(
						sprintf(
							// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
							__(
								'%1$sTLS%2$s Client authentication requires Cloudflare to connect to your origin server using a client certificate',
								'w3-total-cache'
							),
							'<acronym title="' . esc_attr__( 'Transport Layer Security', 'w3-total-cache' ) . '">',
							'</acronym>'
						),
						array(
							'acronym' => array(
								'title' => array(),
							),
						)
					),
				)
			);
			echo '</table>';
			Util_Ui::postbox_footer();
		endif;
		?>
	</div>
</form>

ESTRELLA Pharma – Affy Pharma Pvt Ltd

TREPODOX

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefpodoxime 50mg/5ml

Indications & Uses

UTIs, LRTs

TREPODOX – CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefpodoxime 50mg + Potassium Clavulanate 31.25mg/ 5ml

Indications & Uses

Upper & lower respiratory infections, Uncomplicated skin infections, Urinary Tract Infections

ESTY CLAV

POWDER FOR ORAL SUSPENSION
30ML (GLASS +HDPE BOTTLE)

Composition

Amoxycillin 200mg + Potassium clavulanate 28.50 mg/ 5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis, Upper Respiratory Tract Infections, Urinary Tract Infections

ESTRIXIME – CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefixime 50mg + Potassium clavulanate 31.25mg/5ml

Indications & Uses

Urinary Tract Inefctions, AECB, Otitis Media, Typhoid/p>

ESTRIXIME

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefixime 50mg/5ml

Indications & Uses

Urinary Tract Inefctions, Gastroenteritis

REOMELL

ORAL SUSPENSION
15 ml

Composition

Azithromycin 200mg/5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis,

TAMEST – DS

ORAL SUSPENSION
60 ml

Composition

Paracetamol 250mg/5ml

Indications & Uses

Fever, Pain

STREFEN

ORAL SUSPENSION
60 ml

Composition

Paracetamol 125mg + Mefenamic Acid 50mg/5ml

Indications & Uses

Pain, Fever

STREFOX

ORAL SUSPENSION
30 ml

Composition

Ofloxacin 50mg/5ml

Indications & Uses

Acute exacerbations of chronic Bronchitis, Diarrhoea

TAMACET-P

SYRUP
60 ml

Composition

Paracetamol 125mg + PPH 5mg + Cetirizine HCI 2mg/5ml

Indications & Uses

Fever, common cold & Flu

HEPTRELL

ORAL SUSPENSION
200ml

Composition

Cyproheptadine HCI 2mg + Tricholine citrate 0.275mg/5ml

Indications & Uses

Stimulate Apetite, Induces Weight Gain, Cure Allergies

TREP-DSR

CAPSULES ( HARD GELATIN)
10X10 (Alu-Alu)

Composition

Pantoprazole 40mg (EC) + Domperidone 30mg (SR)

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

RALE-DSR

CAPSULES ( HARD GELATIN)
11X10 (Alu-Alu)

Composition

Rabeprazole 20mg (EC) + Domperidone SR

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

STRETOP-40

INJECTION
40ml

Composition

Pantoprazole Sodium 40mg + NaCL

Indications & Uses

Acid-peptic disorders in hospitalized patients, Zollinger – Ellison Syndrome, Treatment of GERD Associated with Erasive Esophagitis, GL Bleed

DIMACID

SUSPENSION
170ml

Composition

Activated Dimethicone 25mg + Magnesium Hydroxide 200mg+ Aluminium Hydroxide Gel 200mg/10ml

Indications & Uses

Heartburn, Acid Indigestion

ELLAZYME

SYRUP
200ml

Composition

Alpha Amylase (1:2000) 50mg, Pepsin(1:3000) 10mg/5ml

Indications & Uses

Dyspepsia, Flatulence, Anorexia, Pancreatic Insufficiency

ARBOLL-Z

CAPSULES (HARD GELATIN)
10X3X10

Composition

Vitamin C 75mg + Vitamin B12 5mcg + Carbonyl Iron 100mg + Folic Acid 1.5mg + Zinc Sulphate 61.8mg

Indications & Uses

Hyphocromic Anemia in Pregnancy, Chronic and / or Acute Blood Loss, Post-gynaesurgery, Iron Deficiency Anemia

EST-D3 60K

CAPSULES (SOFT GELATIN)
10X1X4

Composition

Cholecalciferol 60000 UI

Indications & Uses

Osteoporosis, Osteoarthritis, Musculoskeletal Pain, Type- 2 Diabetes, Menstrual Irregularities, Pre-eclampsia, IUGR

STREBONA

ORAL SUSPENSION
200ml

Composition

Calcium Carbonate 625mg, Vitamin D3 125 IU/5ml

Indications & Uses

Osteomalacia, Osteoporosis, Fractures, Premenstrual Syndrome

STREFE-III

SYRUP (IRON TONIC)
300 ml

Composition

Iron (III) Hydroxide Polymaltose 50mg, Folic Acid 0.5mg/15ml

Indications & Uses

Pregnancy and lactation, Iron Deficiency Anaemia, Anaemia due to Excessive Haemorrhage, Anaemia Associated with Infections and Malignant Disease

STRECIUM

CAPSULES (SOFT GELATIN)
5X2X15

Composition

Calcitriol 0.25mcg + Calcium Carbonate 500mg + Zinc Sulphate 7.5mg

Indications & Uses

Osteoporosis, Hypoparathyroidism, Pregnancy & Lactation, Premenstrual Syndrome

ESTRE-SPAS

TABLETS
20X10

Composition

Mefenamic Acid 250mg + Dicyclomine HCI 10mg

Indications & Uses

Dysmenorrhea, Irritable Bowel Syndrome, Colic and Bladder Spasm, Abdominal Pain

TAMEST-A

TABLETS (BLISTERS)
20X10

Composition

Nimeulide 100mg + Paracetamo; 325mg

Indications & Uses

Arthritis Pain, Soft Tissue Trauma Including Sprains, Musculoskeletal Pain, Pain Following Dental Extraction

PARTRA FORTE

TABLETS

20X10

Composition

Tramadol 37.5mg + Paracetamol 325mg

Indications & Uses

Chronic Back Pain, Osteoarthritis, Postoperative Pain

UMRELY GEL

GEL
30g

Composition

Diclofenac Diethylamine 1.16% w/w + Oleum Linseed Oil 3 % w/w + Menthol 5% w/w +Methyl Salicylate 10% w/w

Indications & Uses

Sprains & Strains, Lower Back Pain, Joint Pain, Knee Pain

MOISTACT

CREAM
20g

Composition

Urea 10% +Lactic Acid 10% + Propylene Glycol 10% + Liquid Paraffin 10%

Indications & Uses

Foot Cracks, Keratolytic

BELODIP

OINTMENT
15g

Composition

Clotrimazole 1% w/w + Beclomethasone Dipropionate 0.025% w/w + Neomycin 0.5% w/w

Indications & Uses

Eczema, Psoriasis, Corticosteroid Responsive Dermatoses

MIN-DAND

LOTION
100 ml

Composition

Ketoconazole 2% w/v

Indications & Uses

Pityriasis, Dandruff

MIN-DAND-Z

LOTION
100 ml

Composition

Ketoconazole Shampoo 2% w/v + ZPTO 1% w/v

Indications & Uses

Pityriasis, Dandruff

MIN-DAND

SOAP
75g

Composition

Ketoconazole 1% w/w

Indications & Uses

Tinea Versicolor, Prophylaxis of Pityriasis Versicolor

FLUTRELLA

TABLETS
20X1X1

Composition

Fluconazole 200mg

Indications & Uses

Vaginal Candidiasis, Brochopulmonary Infections, Candiduria, Tinea Pedis, Corposis, Cruris, Versicolor

ESTRAVIT

SYRUP
200ml

Composition

L-Iysine HCI 25mg + Vitamin B1 2.5mg + Vitamin B2 2.5mg + Vitamin B6 0.75mg + D-panthenol 3mg +Niacinamide 25mg + Mecobalamin 2mcg/10ml

Indications & Uses

Sub-optimal Growth, Poor Weight Gain, Malnutrition, Prolonged Illness

LYCOSTER PLUS

SYRUP
225ml

Composition

Each 10ml Contains: Lycopene 6% 1000mcg + Vitamin A Palmitate 2500 IU + Vitamin E 10 IU + Ascorbic Acid 50mg + Selenium (as Sodium Selenate) 35mcg + Zinc (As Zinc Gluconate) 3mg + Manganese (as Manganese Gluconate) 2mg + Iodine ( As Potassium Iodine) 100mcg + Copper (As Copper Sulphate0 500mcg + Thiamine HCI 2mg + Riboflavine 3mg + Pyridoxine HCI 1.5mg

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

OSERON

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Antioxidant, Multivitamin & Multiminerals

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

GERMELLA

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Vitamin E (Natural) 400 IU + Wheat Germ Oil 100mg + Omega 3 Fatty Acids 30mg

Indications & Uses

Ulcerative colitis, Metabolic Syndrome, Rheumatoid Arthritis, Type-2 Diabetes, Cardiovascular Diseases

LYCOSTER GOLD

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Each SG Contains Lycopene 6% 2000 IU + Vitamin A 2500 IU + Vitamin E Acetate 10 IU + Vitamin C 50 mg + Zinc sulphate Monohydrate 27.45mg + Selenium Dioxide 70mcg

Indications & Uses

Idiopathic Male Infertility, Pre-eclampsia, Prostate Cancer, Cardiovascular Diseases, Diabetes Mellitus

OSERON -G

CAPSULES (SOFT GELATIN)
10X1X11

Composition

Ginseng + Multivitamin + Multimineral

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

OSERON -G

CAPSULES (SOFT GELATIN)
10X1X11

Composition

Ginseng + Multivitamin + Multimineral

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

ESTRIXIME-200 LB

TABLETS (Alu-Alu)
20X10

Composition

Cefixime 200mg + Lactic Acid Bacilus 2.5 billion spores

Indications & Uses

Otitis Media, Pharyngitis & Tonsillitis, Uncomplicated Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis, Enteric Fever

ESTRIXIME-CV-325

TABLETS (Alu-Alu)
10X1X6

Composition

Cefixime 200mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Urinary Tract Infections, Skin & Skin Structure Infections

ESTY CLAV-625 LB

TABLETS (Alu-Alu)
10X1X6

Composition

Amoxycillin 500mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Community Acquired Pneumonia, Gynaecological Infections, Acute Exacerbations of Chronic Bronchitis, Skin and Soft Tissue Infections

FLOXEST

TABLETS (Blister)
20X10

Composition

Ofloxacin 200mg + Ornidazole 500mg

Indications & Uses

Surgical ions, Diarrheas of Mixed Etiology, Gynaecological Infections, Orofacial and Dental Infections

VOFLOX-500

TABLETS
10X10

Composition

Levofloxacin 500mg

Indications & Uses

Acute Bacterial Sinusitis, Acute Bacterial Exacerbations of Chronic Bronchitis, Skin & Skin Structure Infections, Chronic Bacterial Prostatitis, Urinary Tract Infections

FLOXEST – O

TABLETS (Alu-Alu)
20X10

Composition

Cefixime 200mg + Ofloxacin 200mg

Indications & Uses

Community Acquired Pneumonia, Multiple Drug Resistant-TB, Typhoid

FLOXEST

TABLETS (Alu-Alu)
20X10

Composition

Ofloxacin 200mg

Indications & Uses

Community Acquired Pneumonia, Multiple Drug Resistant-TB, Typhoid

ESTY CLAV- 1.2

INJECTIONS
1.2g

Composition

Amoxycillin 1000mg + Potassium Clavulanate 200mg + WFI

Indications & Uses

Community Acquired Pneumonia, Gynaecological Infections, Upper Respiratory Tract Infections, Skin and Soft Tissue Infections, Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis

TRELLON-SB 1.5

INJECTIONS
1.5g

Composition

Ceftriaxone 1000mg + Sulbactam 500mg + WFI

Indications & Uses

Gynaecological Infections, Lower Respiratory Tract Infections, Intra-abdominal Infections with Aerobic Organisms, Surgical Prophylaxis

TRELLON-TZ 1.125

INJECTIONS
1.125gm

Composition

Ceftriaxone 1000mg + Tazobactam 500 mg + WFI

Indications & Uses

Bone & Joint Infections, Intra-abdominal Infections, Bacterial Meningitis, Pre-operative Surgical Prophylaxis

RELLAM

INJECTIONS
1gm

Composition

Meropenem 1gm + WFI

Indications & Uses

Complicated Intra-abdominal Infection (cIAI), Complicated Skin & Skin Structure Infections (cSSSI), Bacterial Meningitis, Noscocomial Pneumonia

TRELIN-Z 4.5

INJECTIONS
4.5gm

Composition

Piperacillin 4000mg + Tazobactam 500mg + WFI

Indications & Uses

Intra-abdominal Infections, Complicated Urinary Tract Infections, Febrile Neutropenia, Lower Respiratory Tract Infections

TRELIN-Z 4.5

INJECTIONS
4.5gm

Composition

Piperacillin 4000mg + Tazobactam 500mg + WFI

Indications & Uses

Intra-abdominal Infections, Complicated Urinary Tract Infections, Febrile Neutropenia, Lower Respiratory Tract Infections

BUTRELLA

SYRUP

100ml

Composition

Ambroxol HCI 15mg + Guaiphensin 50mg + Terbutaline Sulphate 1.5mg + Mentholated Base/5ml

Indications & Uses

Bronchitis, Productive Cough, Emphysema, Bronchial Asthma

BUTRELLA-BR

SYRUP

100ml

Composition

Terbutaline Sulphate 1.25mg + Bromhexine HCI 4mg + Guaiphenesin 50mg + Methalated Base/5ml

Indications & Uses

Acute Cough, Abnormal Mucus Secretion, Productive Cough

DEXTRIN

SYRUP
100ml

Composition

Dextromethorphan Hydrobromide 10mg + Phenylpherine 5 mg + Cetrizine 5mg + Mentholated Base/5ml

Indications & Uses

Commom Cold and Flu, Nasal Congestion, Sore Throat

VOTRELL-M

TABLETS (Alu-Alu)
20X10

Composition

Levocetirizine 5mg + Montelukast 10mg

Indications & Uses

Allergic Rhinitis, Nasal Congestion, Asthma

VOTRELL

TABLETS (Alu-Alu)
20X11

Composition

Levocetirizine 5mg

Indications & Uses

Chronic Idiopathic Urticaria (CIU), Seasonal Allergic Rhinitis (SAR), Perennial Allergic Rhinitis (PAR)

Arrange A Callback
[]
1 Step 1
Full Name
Telephone
Departmentyour full name
Postal Address
Message
0 /
Previous
Next
Shopping Basket