HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpicare/wp-content/plugins/wp-rocket/views/plugins/update-renewal-expired-notice.php
<?php
/**
 * Plugins renewal notice template.
 *
 * @since 3.14
 *
 * $data array {
 *     Data to populate the template.
 *
 *     @type string $version Next major release version.
 *     @type string $renew_url Renewal URL.
 *     @type string $release_url Major release announcement URL.
 * }
 */

defined( 'ABSPATH' ) || exit;

?>

<tr class="plugin-update-tr active" id="wp-rocket-update">
	<td class="plugin-update colspanchange" colspan="4">
		<div class="wp-rocket-update inline notice">
			<p>
			<?php
			printf(
				// translators: %1$s = <strong>, %2$s = plugin version, %3$s = </strong>, %4$s = <a>, %5$s = </a>, %6$s = <a>.
				esc_html__( ' %1$sWP Rocket %2$s%3$s is available. %4$sLearn more%5$s about the updates and enhancements of this major version. You need an active license to use them on your website, don’t miss out! %6$sRenew Now%5$s', 'rocket' ),
				'<strong>',
				esc_html( $data['version'] ),
				'</strong>',
				'<a href="' . esc_url( $data['release_url'] ) . '" rel="noopener" target="_blank">',
				'</a>',
				'<a href="' . esc_url( $data['renew_url'] ) . '" rel="noopener" target="_blank">'
			);
			?>
			</p>
		</div>
	</td>
</tr>