Server IP : 162.0.217.223 / Your IP : 216.73.216.150 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/yaymail/src/License/views/ |
Upload File : |
<?php use YayMail\License\License; defined( 'ABSPATH' ) || exit; $class = 'notice notice-error'; $licensing_plugins = $this->get_licensing_plugins(); foreach ( $licensing_plugins as $_plugin ) { $license = new License( $_plugin['slug'] ); if ( $license->is_expired() ) { $message = "Your license key for {$_plugin['name']} has expired."; ?> <div class="<?php echo esc_attr( $class ); ?>"> <p> <?php echo esc_html( $message ); ?> <a href="<?php echo esc_url( $license->get_renewal_url() ); ?>" target="_blank"> <?php echo esc_html__( 'Please click here to renew your license key and continue receiving automatic updates.', 'yaymail' ); ?> </a> </p> </div> <?php } }