updated plugin W3 Total Cache version 2.6.1

This commit is contained in:
2023-12-08 23:23:32 +00:00
committed by Gitium
parent fa428d9da9
commit 33d18af972
82 changed files with 5759 additions and 1701 deletions

View File

@ -32,44 +32,38 @@ require W3TC_INC_DIR . '/options/common/header.php';
?>
<div class="w3tc-page-container">
<div class="w3tc-card-container">
<?php
foreach ( $cards_data as $card_type => $cards ) {
$class = 'new' === $card_type ? 'w3tc-card-container-new' : 'w3tc-card-container';
foreach ( $cards as $feature_id => $card ) {
$card_classes = 'w3tc-card';
$title_classes = 'w3tc-card-title';
$is_premium = ! empty( $card['is_premium'] );
$is_new = ! empty( $card['is_new'] );
if ( $is_premium ) {
$card_classes .= ' w3tc-card-premium';
$title_classes .= ' w3tc-card-premium';
}
if ( $is_premium && ! $is_pro ) {
$card_classes .= ' w3tc-card-upgrade';
}
echo reset( $cards_data ) !== $cards ? '<hr class="w3tc-card-container-divider"/>' : '';
?>
<div class="<?php echo $card_classes; ?>" id="w3tc-feature-<?php echo esc_attr( $feature_id ); ?>">
<div class="<?php echo $class; ?>">
<?php
foreach ( $cards as $feature_id => $card ) {
$card_classes = 'w3tc-card';
$title_classes = 'w3tc-card-title';
$is_premium = ! empty( $card['is_premium'] );
$is_new = ! empty( $card['is_new'] );
if ( $is_premium ) {
$card_classes .= ' w3tc-card-premium';
$title_classes .= ' w3tc-card-premium';
}
if ( $is_premium && ! $is_pro ) {
$card_classes .= ' w3tc-card-upgrade';
}
if ( $is_new ) {
?>
<div class="w3tc-card-ribbon-new"><span>NEW</span></div>
<?php
}
?>
<div class="<?php echo $card_classes; ?>" id="w3tc-feature-<?php echo esc_attr( $feature_id ); ?>">
<div class="<?php echo $title_classes; ?>">
<p><?php echo $card['title']; ?></p>
<?php
if ( $is_premium ) {
?>
<p class="w3tc-card-pro"><?php echo __( 'PRO FEATURE', 'w3-total-cache' ); ?></p>
<?php
}
?>
<?php
if ( $is_premium ) {
echo '<p class="w3tc-card-pro">' . __( 'PRO FEATURE', 'w3-total-cache' ) . '</p>';
}
?>
</div>
<div class="w3tc-card-icon"><span class="dashicons <?php echo $card['icon']; ?>"></span></div>
<div class="w3tc-card-body"><p><?php echo $card['text']; ?></p></div>
@ -77,21 +71,33 @@ foreach ( $cards as $feature_id => $card ) {
<div class="w3tc-card-button">
<?php
if ( $is_premium && ! $is_pro ) {
?>
<button class="button w3tc-gopro-button button-buy-plugin" data-src="feature_showcase">
<?php esc_html_e( 'Unlock Feature', 'w3-total-cache' ); ?>
</button>
<?php
echo '<button class="button w3tc-gopro-button button-buy-plugin" data-src="feature_showcase">'
. esc_html__( 'Unlock Feature', 'w3-total-cache' ) . '</button>';
} elseif ( ! empty( $card['button'] ) ) {
echo $card['button'];
}
?>
</div><div class="w3tc-card-links"><?php echo $card['link']; ?></div>
</div>
<?php
if ( $is_new ) {
?>
<div class="w3tc-card-ribbon-new">
<span class="dashicons dashicons-awards"></span>
<b><?php esc_html_e( 'New', 'w3-total-cache' ); ?></b>
<span>
<?php esc_html_e( 'in', 'w3-total-cache' ); ?> W3 Total Cache Pro <?php echo W3TC_VERSION; ?>!
</span>
</div>
<?php
}
?>
</div>
<?php
}
?>
</div>
<?php
}
?>
</div>
</div>