uawdijnntqw1x1x1
IP : 18.220.50.218
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
public_html
/
Update
/
..
/
wp-content
/
plugins
/
wp-smushit
/
core
/
class-cron-controller.php
/
/
<?php namespace Smush\Core; class Cron_Controller extends Controller { const CRON_HOOK = 'wp_smush_daily_cron'; /** * Static instance * * @var self */ private static $instance; /** * Static instance getter */ public static function get_instance() { if ( empty( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } public function __construct() { $this->register_action( 'admin_init', array( $this, 'schedule_cron' ) ); } /** * Schedule cron */ public function schedule_cron() { if ( ! wp_next_scheduled( self::CRON_HOOK ) ) { wp_schedule_event( time(), 'daily', self::CRON_HOOK ); } } /** * Unschedule cron */ public function unschedule_cron() { wp_clear_scheduled_hook( self::CRON_HOOK ); } }
/home/batcwwjx/public_html/Update/../wp-content/plugins/wp-smushit/core/class-cron-controller.php