PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/mytube.pm/wp-content/plugins/comet-cache/src/includes/traits/Plugin/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : /home/trave494/mytube.pm/wp-content/plugins/comet-cache/src/includes/traits/Plugin/CronUtils.php

<?php
namespace WebSharks\CometCache\Traits\Plugin;

use WebSharks\CometCache\Classes;

trait CronUtils
{
    /**
     * Extends WP-Cron schedules.
     *
     * @since 150422 Rewrite.
     *
     * @attaches-to `cron_schedules` filter.
     *
     * @param array $schedules An array of the current schedules.
     *
     * @return array Revised array of WP-Cron schedules.
     */
    public function extendCronSchedules($schedules)
    {
        $schedules['every15m'] = [
            'interval' => 900,
            'display'  => __('Every 15 Minutes', 'comet-cache'),
        ];
        return $schedules;
    }

    /**
     * Checks cron setup, validates schedules, and reschedules events if necessary.
     *
     * @attaches-to `init` hook.
     *
     * @since 151220 Improving WP Cron setup and validation of schedules
     */
    public function checkCronSetup()
    {
        if ((!get_transient('doing_cron') && $this->options['crons_setup'] < 1439005906)
            || $this->options['crons_setup_on_namespace'] !== __NAMESPACE__
            || $this->options['crons_setup_with_cache_cleanup_schedule'] !== $this->options['cache_cleanup_schedule']
            || $this->options['crons_setup_on_wp_with_schedules'] !== sha1(serialize(wp_get_schedules()))
            || !wp_next_scheduled('_cron_'.GLOBAL_NS.'_cleanup')
            
        ) {
            wp_clear_scheduled_hook('_cron_'.GLOBAL_NS.'_cleanup');
            wp_schedule_event(time() + 60, $this->options['cache_cleanup_schedule'], '_cron_'.GLOBAL_NS.'_cleanup');

            

            $this->updateOptions(
                [
                    'crons_setup'                             => time(),
                    'crons_setup_on_namespace'                => __NAMESPACE__,
                    'crons_setup_with_cache_cleanup_schedule' => $this->options['cache_cleanup_schedule'],
                    'crons_setup_on_wp_with_schedules'        => sha1(serialize(wp_get_schedules())),
                ]
            );
        }
    }

    /**
     * Resets `crons_setup` and clears WP-Cron schedules.
     *
     * @since 151220 Fixing bug with Auto-Cache Engine cron disappearing in some scenarios
     *
     * @note This MUST happen upon uninstall and deactivation due to buggy WP_Cron behavior.
     * Events with a custom schedule will disappear when plugin is not active (see http://bit.ly/1lGdr78).
     */
    public function resetCronSetup()
    {
        if (is_multisite()) { // Main site CRON jobs.
            switch_to_blog(get_current_site()->blog_id);
            
            wp_clear_scheduled_hook('_cron_'.GLOBAL_NS.'_cleanup');
            restore_current_blog(); // Restore current blog.
        } else { // Standard WP installation.
            
            wp_clear_scheduled_hook('_cron_'.GLOBAL_NS.'_cleanup');
        }
        $this->updateOptions(
            [ // Reset so that crons are rescheduled upon next activation
              'crons_setup'                             => $this->default_options['crons_setup'],
              'crons_setup_on_namespace'                => $this->default_options['crons_setup_on_namespace'],
              'crons_setup_with_cache_cleanup_schedule' => $this->default_options['crons_setup_with_cache_cleanup_schedule'],
              'crons_setup_on_wp_with_schedules'        => $this->default_options['crons_setup_on_wp_with_schedules'],
            ]
        );
    }
}