| Server IP : 93.127.179.46 / Your IP :
216.73.216.109 [
Web Server : LiteSpeed System : Linux nl-srv-web1124.main-hosting.eu 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64 User : u964240598 ( 964240598) PHP Version : 8.4.19 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u964240598/public_html/wp-content/plugins/imagify/inc/classes/ |
Upload File : |
<?php
use Imagify\Traits\InstanceGetterTrait;
/**
* Class that handles the plugin rating cron.
*
* @since 1.7
* @author Grégory Viguier
*/
class Imagify_Cron_Rating extends Imagify_Abstract_Cron {
use InstanceGetterTrait;
/**
* Class version.
*
* @var string
* @since 1.7
*/
const VERSION = '1.0';
/**
* Cron name.
*
* @var string
* @since 1.7
* @access protected
*/
protected $event_name = 'imagify_rating_event';
/**
* Cron recurrence.
*
* @var string
* @since 1.7
* @access protected
*/
protected $event_recurrence = 'daily';
/**
* Cron time.
*
* @var string
* @since 1.7
* @access protected
*/
protected $event_time = '15:00';
/** ----------------------------------------------------------------------------------------- */
/** HOOKS =================================================================================== */
/** ----------------------------------------------------------------------------------------- */
/**
* Initiate the event.
*
* @since 1.7
* @access public
* @author Grégory Viguier
*/
public function schedule_event() {
if ( ! wp_next_scheduled( $this->get_event_name() ) && ! get_site_transient( 'do_imagify_rating_cron' ) ) {
wp_schedule_event( $this->get_event_timestamp(), $this->get_event_recurrence(), $this->get_event_name() );
}
}
/**
* The event action.
*
* @since 1.7
* @access public
* @author Grégory Viguier
*/
public function do_event() {
// Stop the process if the plugin isn't installed for 3 days.
if ( get_site_transient( 'imagify_seen_rating_notice' ) ) {
return;
}
$user = get_imagify_user();
if ( ! is_wp_error( $user ) && isset( $user->image_count ) && (int) $user->image_count > 100 ) {
set_site_transient( 'imagify_user_images_count', $user->image_count );
}
}
}
Anon7 - 2022
AnonSec Team
