updated plugin W3 Total Cache
version 2.7.0
This commit is contained in:
@ -25,7 +25,7 @@ if ( ! defined( 'W3TC' ) ) {
|
||||
|
||||
<div class="tablenav top">
|
||||
|
||||
<?php if ( ! $config->is_sealed( 'extensions.active' ) ) : ?>
|
||||
<?php if ( ! $this->_config->is_sealed( 'extensions.active' ) ) : ?>
|
||||
<div class="alignleft actions">
|
||||
<select name="action">
|
||||
<option value="-1" selected="selected"><?php esc_html_e( 'Bulk Actions', 'w3-total-cache' ); ?></option>
|
||||
@ -84,7 +84,7 @@ if ( ! defined( 'W3TC' ) ) {
|
||||
do_action( "w3tc_extension_before_row-{$extension}" );
|
||||
|
||||
?>
|
||||
<tr id="<?php echo esc_attr( $extension ); ?>" class="<?php echo $config->is_extension_active( $extension ) ? 'active' : 'inactive'; ?>">
|
||||
<tr id="<?php echo esc_attr( $extension ); ?>" class="<?php echo $this->_config->is_extension_active( $extension ) ? 'active' : 'inactive'; ?>">
|
||||
<th scope="row" class="check-column">
|
||||
<label class="screen-reader-text" for="checkbox_<?php echo esc_attr( $cb_id ); ?>"><?php echo esc_html( sprintf( /* translators: 1 label for Extension select/deselect checkobox */ __( 'Select %1$s', 'w3-total-cache' ), $meta['name'] ) ); ?></label>
|
||||
<input type="checkbox" name="checked[]" value="<?php echo esc_attr( $extension ); ?>" id="checkbox_<?php echo esc_attr( $cb_id ); ?>" class="w3tc_extensions_input_active" <?php disabled( ! $meta['enabled'] ); ?>>
|
||||
@ -93,7 +93,7 @@ if ( ! defined( 'W3TC' ) ) {
|
||||
<strong><?php echo esc_html( $meta['name'] ); ?></strong>
|
||||
<div class="row-actions-visible">
|
||||
<?php
|
||||
if ( $config->is_extension_active( $extension ) ) :
|
||||
if ( $this->_config->is_extension_active( $extension ) ) :
|
||||
$extra_links = array();
|
||||
|
||||
if ( isset( $meta['settings_exists'] ) && $meta['settings_exists'] ) {
|
||||
@ -125,7 +125,7 @@ if ( ! defined( 'W3TC' ) ) {
|
||||
|
||||
<span class="0"></span>
|
||||
|
||||
<?php if ( ! $config->is_sealed( 'extensions.active' ) ) : ?>
|
||||
<?php if ( ! $this->_config->is_sealed( 'extensions.active' ) ) : ?>
|
||||
<?php echo $links ? ' | ' : ''; ?>
|
||||
<span class="deactivate">
|
||||
<a href="<?php echo esc_url( wp_nonce_url( Util_Ui::admin_url( sprintf( 'admin.php?page=w3tc_extensions&action=deactivate&extension=%s&extension_status=%s&paged=%d', $extension, $extension_status, $page ) ), 'w3tc' ) ); ?>" title="<?php esc_attr_e( 'Deactivate this extension', 'w3-total-cache' ); ?> ">
|
||||
@ -136,7 +136,7 @@ if ( ! defined( 'W3TC' ) ) {
|
||||
<?php else : ?>
|
||||
<span class="activate">
|
||||
<?php if ( $meta['enabled'] ) : ?>
|
||||
<?php if ( ! $config->is_sealed( 'extensions.active' ) ) : ?>
|
||||
<?php if ( ! $this->_config->is_sealed( 'extensions.active' ) ) : ?>
|
||||
<a href="<?php echo esc_url( wp_nonce_url( Util_Ui::admin_url( sprintf( 'admin.php?page=w3tc_extensions&action=activate&extension=%s&extension_status=%s&paged=%d', $extension, $extension_status, $page ) ), 'w3tc' ) ); ?>" title="<?php esc_attr_e( 'Activate this extension', 'w3-total-cache' ); ?> ">
|
||||
<?php esc_html_e( 'Activate' ); ?>
|
||||
</a>
|
||||
@ -183,7 +183,7 @@ if ( ! defined( 'W3TC' ) ) {
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="<?php echo $config->is_extension_active( $extension ) ? 'active' : 'inactive'; ?> second plugin-version-author-uri">
|
||||
<div class="<?php echo $this->_config->is_extension_active( $extension ) ? 'active' : 'inactive'; ?> second plugin-version-author-uri">
|
||||
<?php
|
||||
echo esc_html(
|
||||
sprintf(
|
||||
@ -230,7 +230,7 @@ if ( ! defined( 'W3TC' ) ) {
|
||||
</table>
|
||||
<div class="tablenav bottom">
|
||||
|
||||
<?php if ( ! $config->is_sealed( 'extensions.active' ) ) : ?>
|
||||
<?php if ( ! $this->_config->is_sealed( 'extensions.active' ) ) : ?>
|
||||
<div class="alignleft actions">
|
||||
<select name="action2">
|
||||
<option value="-1" selected="selected"><?php esc_html_e( 'Bulk Actions', 'w3-total-cache' ); ?></option>
|
||||
|
Reference in New Issue
Block a user