site_oueb_2/wp-content/themes/zakra/inc/admin/class-zakra-theme-review-no...

214 lines
8.0 KiB
PHP
Executable File

<?php
/**
* Zakra Theme Review Notice Class.
*
* @author ThemeGrill
* @package Zakra
* @since 1.1.9
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
/**
* Class to display the theme review notice after certain period.
*
* Class Zakra_Theme_Review_Notice
*/
class Zakra_Theme_Review_Notice {
/**
* Constructor function to include the required functionality for the class.
*
* Zakra_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() {
// Set the installed time in `zakra_theme_installed_time` option table.
if ( ! get_option( 'zakra_theme_installed_time' ) ) {
update_option( 'zakra_theme_installed_time', time() );
}
}
/**
* Show HTML markup if conditions meet.
*/
public function review_notice_markup() {
$user_id = get_current_user_id();
$ignored_notice = get_user_meta( $user_id, 'zakra_ignore_theme_review_notice', true );
$ignored_notice_partially = get_user_meta( $user_id, 'nag_zakra_ignore_theme_review_notice_partially', true );
$dismiss_url = wp_nonce_url(
add_query_arg( 'nag_zakra_ignore_theme_review_notice', 0 ),
'nag_zakra_ignore_theme_review_notice_nonce',
'_zakra_ignore_theme_review_notice_nonce'
);
$temporary_dismiss_url = wp_nonce_url(
add_query_arg( 'nag_zakra_ignore_theme_review_notice_partially', 0 ),
'nag_zakra_ignore_theme_review_notice_partially_nonce',
'_zakra_ignore_theme_review_notice_nonce'
);
if ( ! current_user_can( 'edit_posts' ) ) {
return;
}
/**
* Return from notice display if:
*
* 1. The theme installed is less than 14 days ago.
* 2. If the user has ignored the message partially for 14 days.
* 3. Dismiss always if clicked on 'I Already Did' button.
*/
if ( ( get_option( 'zakra_theme_installed_time' ) > strtotime( '-14 day' ) ) || ( $ignored_notice_partially > strtotime( '-14 day' ) ) || ( $ignored_notice ) ) {
return;
}
?>
<div class="notice notice-success zakra-notice theme-review-notice" style="position:relative;">
<div class="zakra-message__content">
<div class="zakra-message__image">
<img class="zakra-logo--png" src="<?php echo esc_url( get_template_directory_uri() . '/inc/admin/images/zakra-logo-square.png' ); ?>" alt="<?php esc_attr_e( 'Zakra Logo', 'zakra' ); ?>" />
</div>
<div class="zakra-message__text">
<h3><?php echo esc_html( 'HAKUNA MATATA!' ); ?></h3>
<p>(
<?php
printf(
/* translators: %s: Smile icon */
esc_html__( 'The above word is just to draw your attention. %s', 'zakra' ),
'<span class="dashicons dashicons-smiley smile-icon"></span>'
);
?>
)</p>
<p>
<?php
printf(
/* translators: %1$s: Opening of strong tag, %2$s: Theme's Name, %3$s: Closing of strong tag */
esc_html__( 'Hope you are having a nice experience with %1$s %2$s %3$s theme. Please provide this theme a nice review.', 'zakra' ),
'<strong>',
esc_html( wp_get_theme( get_template() ) ),
'</strong>'
);
?>
</p>
<strong>
<?php esc_html_e( 'What benefit would you have?', 'zakra' ); ?>
</strong>
<p>
<?php
printf(
/* translators: %s: Smiley icon */
esc_html__( 'Basically, it would encourage us to release updates regularly with new features & bug fixes so that you can keep on using the theme without any issues and also to provide free support like we have been doing. %s', 'zakra' ),
'<span class="dashicons dashicons-smiley smile-icon"></span>'
);
?>
</p>
<div class="links">
<a href="https://wordpress.org/support/theme/zakra/reviews/?filter=5#new-post" class="btn button-primary" target="_blank">
<span class="dashicons dashicons-external"></span>
<span><?php esc_html_e( 'Sure, I\'d love to!', 'zakra' ); ?></span>
</a>
<a href="<?php echo esc_url( $dismiss_url ); ?>" class="btn button-secondary">
<span class="dashicons dashicons-smiley"></span>
<span><?php esc_html_e( 'I already did!', 'zakra' ); ?></span>
</a>
<a href="<?php echo esc_url( $temporary_dismiss_url ); ?>" class="btn button-secondary">
<span class="dashicons dashicons-calendar"></span>
<span><?php esc_html_e( 'Maybe later', 'zakra' ); ?></span>
</a>
<a href="<?php echo esc_url( 'https://wordpress.org/support/theme/zakra/' ); ?>" class="btn button-secondary" target="_blank">
<span class="dashicons dashicons-testimonial"></span>
<span><?php esc_html_e( 'I have a query', 'zakra' ); ?></span>
</a>
</div> <!-- /.links -->
</div> <!-- /.zakra-message__text -->
<a class="notice-dismiss" href="<?php echo esc_url( $dismiss_url ); ?>"></a>
</div> <!-- /.zakra-message__content -->
</div> <!-- /.theme-review-notice -->
<?php
}
/**
* `I already did` button or `dismiss` button: remove the review notice permanently.
*/
public function ignore_theme_review_notice() {
// If user clicks to ignore the notice, add that to their user meta.
if ( isset( $_GET['nag_zakra_ignore_theme_review_notice'] ) && isset( $_GET['_zakra_ignore_theme_review_notice_nonce'] ) ) {
if ( ! wp_verify_nonce( wp_unslash( $_GET['_zakra_ignore_theme_review_notice_nonce'] ), 'nag_zakra_ignore_theme_review_notice_nonce' ) ) {
wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'zakra' ) );
}
if ( '0' === $_GET['nag_zakra_ignore_theme_review_notice'] ) {
add_user_meta( get_current_user_id(), 'zakra_ignore_theme_review_notice', 'true', true );
}
}
}
/**
* `Maybe later` button: remove the review notice partially.
*/
public function ignore_theme_review_notice_partially() {
// If user clicks to ignore the notice, add that to their user meta.
if ( isset( $_GET['nag_zakra_ignore_theme_review_notice_partially'] ) && isset( $_GET['_zakra_ignore_theme_review_notice_nonce'] ) ) {
if ( ! wp_verify_nonce( wp_unslash( $_GET['_zakra_ignore_theme_review_notice_nonce'] ), 'nag_zakra_ignore_theme_review_notice_partially_nonce' ) ) {
wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'zakra' ) );
}
if ( '0' === $_GET['nag_zakra_ignore_theme_review_notice_partially'] ) {
update_user_meta( get_current_user_id(), 'nag_zakra_ignore_theme_review_notice_partially', time() );
}
}
}
/**
* Remove the data set after the theme has been switched to other theme.
*/
public function review_notice_data_remove() {
$get_all_users = get_users();
$theme_installed_time = get_option( 'zakra_theme_installed_time' );
// Delete options data.
if ( $theme_installed_time ) {
delete_option( 'zakra_theme_installed_time' );
}
// Delete user meta data for theme review notice.
foreach ( $get_all_users as $user ) {
$ignored_notice = get_user_meta( $user->ID, 'zakra_ignore_theme_review_notice', true );
$ignored_notice_partially = get_user_meta( $user->ID, 'nag_zakra_ignore_theme_review_notice_partially', true );
// Delete permanent notice remove data.
if ( $ignored_notice ) {
delete_user_meta( $user->ID, 'zakra_ignore_theme_review_notice' );
}
// Delete partial notice remove data.
if ( $ignored_notice_partially ) {
delete_user_meta( $user->ID, 'nag_zakra_ignore_theme_review_notice_partially' );
}
}
}
}
new Zakra_Theme_Review_Notice();