uawdijnntqw1x1x1
IP : 52.15.109.247
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
/
..
/
old
/
public_html
/
wp-content
/
plugins
/
wp-rocket
/
inc
/
common
/
cron.php
/
/
<?php defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' ); /** * Adds new intervals for cron jobs * * Customizes the time interval between automatic cache purge * This setting can be changed from the options page of the plugin * By default, the interval is 24 hours * * Adds a weekly/monthly interval for database optimization * * @since 2.8.9 Add weekly and monthly intervals * @since 1.0 * * @param Array $schedules An array of intervals used by cron jobs. * @return Array Updated array of intervals */ function rocket_purge_cron_schedule( $schedules ) { if ( 0 < (int) get_rocket_option( 'purge_cron_interval' ) ) { $schedules['rocket_purge'] = array( 'interval' => get_rocket_purge_cron_interval(), // translators: %s = WP Rocket name. 'display' => sprintf( __( '%s clear', 'rocket' ), WP_ROCKET_PLUGIN_NAME ), ); } if ( get_rocket_option( 'schedule_automatic_cleanup', false ) ) { switch ( get_rocket_option( 'automatic_cleanup_frequency' ) ) { case 'weekly': $schedules['weekly'] = array( 'interval' => 604800, 'display' => __( 'weekly', 'rocket' ), ); break; case 'monthly': $schedules['monthly'] = array( 'interval' => 2592000, 'display' => __( 'monthly', 'rocket' ), ); break; } } return $schedules; } add_filter( 'cron_schedules', 'rocket_purge_cron_schedule' ); /** * Planning cron * If the task is not programmed, it is automatically triggered * * @since 1.0 */ function rocket_purge_cron_scheduled() { if ( 0 < (int) get_rocket_option( 'purge_cron_interval' ) && ! wp_next_scheduled( 'rocket_purge_time_event' ) ) { wp_schedule_event( time() + get_rocket_purge_cron_interval(), 'rocket_purge', 'rocket_purge_time_event' ); } } add_action( 'init', 'rocket_purge_cron_scheduled' ); /** * This event is launched when the cron is triggered * Purge all cache files when user save options * * @since 2.0 Clear cache files for all langs when a plugin translation is activated * @since 1.0 */ function do_rocket_purge_cron() { // Purge domain cache files. rocket_clean_domain(); // Run WP Rocket Bot for preload cache files. run_rocket_preload_cache( 'cache-preload' ); } add_action( 'rocket_purge_time_event', 'do_rocket_purge_cron' );
/home/batcwwjx/public_html/../old/public_html/wp-content/plugins/wp-rocket/inc/common/cron.php