HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-86-generic #87-Ubuntu SMP PREEMPT_DYNAMIC Mon Sep 22 18:03:36 UTC 2025 x86_64
User: cssnetorguk (1024)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: //home/diditleak.co.uk/public_html/wp-content/themes/sydney/inc/notices/class-sydney-review.php
<?php
/**
 * Sydney review notice
 *
 */

// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;

/**
 * Class to display the theme review notice after certain period.
 *
  */
class Sydney_Theme_Review_Notice {

	/**
	 * Constructor
	 */
	public function __construct() {
		add_action( 'after_setup_theme', array( $this, 'review_notice' ) );
		add_action( 'admin_notices', array( $this, 'review_notice_markup' ), 0 );
		add_action( 'admin_init', array( $this, 'ignore_theme_review_notice' ), 0 );
		add_action( 'admin_init', array( $this, 'ignore_theme_review_notice_partially' ), 0 );
		add_action( 'switch_theme', array( $this, 'review_notice_data_remove' ) );
	}

	/**
	 * Set the required option value as needed for theme review notice.
	 */
	public function review_notice() {
		if ( !get_option( 'sydney_theme_installed_time' ) ) {
			update_option( 'sydney_theme_installed_time', time() );
		}
	}

	/**
	 * Show HTML markup if conditions meet.
	 */
	public function review_notice_markup() {
		$user_id                  = get_current_user_id();
		$current_user             = wp_get_current_user();
		$ignored_notice           = get_user_meta( $user_id, 'sydney_disable_review_notice', true );
		$ignored_notice_partially = get_user_meta( $user_id, 'delay_sydney_disable_review_notice_partially', true );

		if ( ( get_option( 'sydney_theme_installed_time' ) > strtotime( '-14 day' ) ) || ( $ignored_notice_partially > strtotime( '-14 day' ) ) || ( $ignored_notice ) ) {
			return;
		}
		?>
		<div class="notice notice-success" style="position:relative;">
			<p>
				<?php
				printf(
				    /* Translators: %1$s current user display name. */
					esc_html__(
						'Hey, %1$s! You\'ve been using Sydney for more than two weeks now and we hope you\'re happy with it. If you have a few minutes, we would love to get a 5 star review from you.', 'sydney'
					),
					'<strong>' . esc_html( $current_user->display_name ) . '</strong>'
				);
				?>
			</p>

			<p>
				<a href="https://wordpress.org/support/theme/sydney/reviews/?filter=5#new-post" class="btn button-primary" target="_blank"><?php esc_html_e( 'Sure', 'sydney' ); ?></a>

				<a href="?delay_sydney_disable_review_notice_partially=0" class="btn button-secondary"><?php esc_html_e( 'Maybe later', 'sydney' ); ?></a>

				<a href="?nag_sydney_disable_review_notice=0" class="btn button-secondary"><?php esc_html_e( 'I already did', 'sydney' ); ?></a>
			</p>

			<a class="notice-dismiss" href="?nag_sydney_disable_review_notice=0" style="text-decoration:none;"></a>
		</div>
		<?php
	}

	/**
	 * Disable review notice permanently
	 */
	public function ignore_theme_review_notice() {
		if ( isset( $_GET['nag_sydney_disable_review_notice'] ) && '0' == $_GET['nag_sydney_disable_review_notice'] ) {
			add_user_meta( get_current_user_id(), 'sydney_disable_review_notice', 'true', true );
		}
	}

	/**
	 * Delay review notice
	 */
	public function ignore_theme_review_notice_partially() {
		if ( isset( $_GET['delay_sydney_disable_review_notice_partially'] ) && '0' == $_GET['delay_sydney_disable_review_notice_partially'] ) {
			update_user_meta( get_current_user_id(), 'delay_sydney_disable_review_notice_partially', time() );
		}
	}

	/**
	 * Delete data on theme switch
	 */
	public function review_notice_data_remove() {
		$get_all_users        = get_users();
		$theme_installed_time = get_option( 'sydney_theme_installed_time' );

		// Delete options data.
		if ( $theme_installed_time ) {
			delete_option( 'sydney_theme_installed_time' );
		}

		foreach ( $get_all_users as $user ) {
			$ignored_notice           = get_user_meta( $user->ID, 'sydney_disable_review_notice', true );
			$ignored_notice_partially = get_user_meta( $user->ID, 'delay_sydney_disable_review_notice_partially', true );

			if ( $ignored_notice ) {
				delete_user_meta( $user->ID, 'sydney_disable_review_notice' );
			}

			if ( $ignored_notice_partially ) {
				delete_user_meta( $user->ID, 'delay_sydney_disable_review_notice_partially' );
			}
		}
	}
}

new Sydney_Theme_Review_Notice();