Server IP : 185.246.164.236 / Your IP : 216.73.216.0 Web Server : Apache System : Linux linux105 6.1.0-31-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.128-1 (2025-02-07) x86_64 User : web9 ( 5012) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client9/web9/web/wp-content/plugins/wp-crontrol/ |
Upload File : |
<?php /** * Plugin Name: WP Crontrol * Plugin URI: https://wp-crontrol.com * Description: Take control of the cron events on your WordPress website. * Author: John Blackbourn * Author URI: https://wp-crontrol.com * Version: 1.18.0 * Text Domain: wp-crontrol * Domain Path: /languages/ * Requires at least: 5.9 * Requires PHP: 7.4 * License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html * License: GPL v2 or later * * LICENSE * This file is part of WP Crontrol. * * WP Crontrol is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * @package wp-crontrol * @author John Blackbourn & Edward Dale * @copyright Copyright 2008 Edward Dale, 2012-2025 John Blackbourn * @license https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt GPL 2.0 * @link https://github.com/johnbillion/wp-crontrol/ */ namespace Crontrol; const PLUGIN_FILE = __FILE__; const WP_CRONTROL_VERSION = '1.18.0'; if ( ! defined( 'ABSPATH' ) ) { header( 'HTTP/1.1 403 Forbidden' ); exit; } if ( ! version_compare( PHP_VERSION, '7.4', '>=' ) ) { return; } if ( ! file_exists( __DIR__ . '/vendor/autoload.php' ) ) { return; } require_once __DIR__ . '/vendor/autoload.php'; require_once __DIR__ . '/src/bootstrap.php'; require_once __DIR__ . '/src/event.php'; require_once __DIR__ . '/src/schedule.php'; // Get this show on the road. init_hooks();