Current File : /home/kelaby89/sergio-cuchi.tattoo/wp-content/plugins/envira-gallery-lite/includes/admin/review.php |
<?php
/**
* Review class.
*
* @since 1.1.4.5
*
* @package envira
* @author Devin Vinson
*/
/**
* Review Class
*
* @since 1.1.4.5
*/
class Envira_Lite_Review {
/**
* Holds the class object.
*
* @since 1.1.4.5
*
* @var object
*/
public static $instance;
/**
* Path to the file.
*
* @since 1.1.4.5
*
* @var string
*/
public $file = __FILE__;
/**
* Holds the review slug.
*
* @since 1.1.4.5
*
* @var string
*/
public $hook;
/**
* Holds the base class object.
*
* @since 1.1.4.5
*
* @var object
*/
public $base;
/**
* API Username.
*
* @since 1.1.4.5
*
* @var bool|string
*/
public $user = false;
/**
* Primary class constructor.
*
* @since 1.1.4.5
*/
public function __construct() {
$this->base = Envira_Gallery_Lite::get_instance();
add_action( 'admin_notices', [ $this, 'review' ] );
add_action( 'wp_ajax_envira_dismiss_review', [ $this, 'dismiss_review' ] );
}
/**
* Add admin notices as needed for reviews.
*
* @since 1.1.6.1
*/
public function review() {
// Verify that we can do a check for reviews.
$review = get_option( 'envira_gallery_review' );
$time = time();
$load = false;
if ( ! $review ) {
$review = [
'time' => $time,
'dismissed' => false,
];
$load = true;
} elseif (
( isset( $review['dismissed'] ) && ! $review['dismissed'] )
&& ( isset( $review['time'] )
&& ( ( $review['time'] + DAY_IN_SECONDS ) <= $time ) )
) {
// Check if it has been dismissed or not.
$load = true;
}
// If we cannot load, return early.
if ( ! $load ) {
return;
}
// Update the review option now.
update_option( 'envira_gallery_review', $review );
// Run through optins on the site to see if any have been loaded for more than a week.
$valid = false;
$galleries = $this->base->get_galleries();
if ( ! $galleries ) {
return;
}
foreach ( $galleries as $gallery ) {
$data = get_post( $gallery['id'] );
// Check the creation date of the local optin. It must be at least one week after.
$created = isset( $data->post_date ) ? strtotime( $data->post_date ) + ( 7 * DAY_IN_SECONDS ) : false;
if ( ! $created ) {
continue;
}
if ( $created <= $time ) {
$valid = true;
break;
}
}
// If we don't have a valid optin yet, return.
if ( ! $valid ) {
return;
}
// We have a candidate! Output a review message.
?>
<div class="notice notice-info is-dismissible envira-review-notice">
<p><?php esc_html_e( 'Hey, I noticed you created a photo gallery with Envira - that’s awesome! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?', 'envira-gallery-lite' ); ?></p>
<p><strong><?php esc_html_e( '~ Syed Balkhi, CEO of Envira Gallery', 'envira-gallery-lite' ); ?></strong></p>
<p>
<a href="https://wordpress.org/support/plugin/envira-gallery-lite/reviews/?filter=5#new-post" class="envira-dismiss-review-notice envira-review-out" target="_blank" rel="noopener"><?php esc_html_e( 'Ok, you deserve it', 'envira-gallery-lite' ); ?></a><br>
<a href="#" class="envira-dismiss-review-notice" target="_blank" rel="noopener"><?php esc_html_e( 'Nope, maybe later', 'envira-gallery-lite' ); ?></a><br>
<a href="#" class="envira-dismiss-review-notice" target="_blank" rel="noopener"><?php esc_html_e( 'I already did', 'envira-gallery-lite' ); ?></a><br>
</p>
</div>
<script type="text/javascript">
jQuery(document).ready( function($) {
$(document).on('click', '.envira-dismiss-review-notice, .envira-review-notice button', function( event ) {
if ( ! $(this).hasClass('envira-review-out') ) {
event.preventDefault();
}
$.post( ajaxurl, {
action: 'envira_dismiss_review'
});
$('.envira-review-notice').remove();
});
});
</script>
<?php
}
/**
* Dismiss the review nag
*
* @since 1.1.6.1
*/
public function dismiss_review() {
$review = get_option( 'envira_gallery_review' );
if ( ! $review ) {
$review = [];
}
$review['time'] = time();
$review['dismissed'] = true;
update_option( 'envira_gallery_review', $review );
die;
}
/**
* Singleton Instance
*
* @since 1.1.6.1
*
* @return object
*/
public static function get_instance() {
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Envira_Lite_Review ) ) {
self::$instance = new Envira_Lite_Review();
}
return self::$instance;
}
}
$envira_lite_review = Envira_Lite_Review::get_instance();