Sid Gifari File Manager
🏠 Root
/
home
/
nradmin
/
www
/
wp-content
/
plugins
/
w3-total-cache
/
📝 Editing: Generic_WidgetAccount_View.php
<?php /** * File: Generic_WidgetAccount_View.php * * @since 2.7.0 * @package W3TC */ namespace W3TC; if ( ! defined( 'W3TC' ) ) { die(); } $licensing = new Licensing_Plugin_Admin(); $license_key = $licensing->get_license_key(); $license = Licensing_Core::check_license( $license_key, W3TC_VERSION ); ?> <table> <tr> <td><b><?php esc_html_e( 'License:', 'w3-total-cache' ); ?></b></td> <td> <?php echo ! empty( $license ) && in_array( $license->license_status, array( 'active.by_rooturi', 'active.by_ip' ), true ) ? esc_html__( 'Pro', 'w3-total-cache' ) : esc_html__( 'Free', 'w3-total-cache' ); ?> </td> </tr> <tr> <td><b><?php esc_html_e( 'Status:', 'w3-total-cache' ); ?></b></td> <td> <?php if ( ! empty( $license ) ) { switch ( $license ) { case 'active.by_rooturi' === $license->license_status: case 'active.by_ip' === $license->license_status: esc_html_e( 'Active', 'w3-total-cache' ); break; case 'inactive.expired' === $license->license_status: esc_html_e( 'Expired', 'w3-total-cache' ); break; case 'invalid.not_present' === $license->license_status: esc_html_e( 'Free license, no expiration', 'w3-total-cache' ); break; default: esc_html_e( 'Unknown', 'w3-total-cache' ); } } else { esc_html_e( 'Free license, no expiration', 'w3-total-cache' ); } ?> </td> </tr> <!-- <tr> <td><b><?php esc_html_e( 'Renewal Date:', 'w3-total-cache' ); ?></b></td> <td>TBD</td> </tr> --> </table> <?php if ( empty( $license ) || ( ! empty( $license ) && 'invalid.not_present' === $license->license_status ) ) { ?> <p> <?php echo wp_kses( sprintf( // Translators: 1 opening HTML strong tag, 2 closing HTML strong tag. __( 'Upgrade to %1$sW3 Total Cache Pro%2$s now to unlock additional settings and features that can further improve your site\'s performance and Google PageSpeed ratings.', 'w3-total-cache' ), '<strong>', '</strong>' ), array( 'strong' => array() ) ); ?> </p> <p> <input type="button" class="button-primary button-buy-plugin" data-src="account_widget" value="<?php esc_attr_e( 'Learn more about Pro', 'w3-total-cache' ); ?>" /> </p> <?php } ?>
💾 Save
❌ Cancel
Sid Gifari File Manager v1.0 | Terminal Auto-Sync Enabled | Current Path: /home/nradmin/www/wp-content/plugins/w3-total-cache