Lines:
1 to 23 of 23
<?php /** * Cron * * @package EDD * @subpackage Classes/Cron * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.6 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /* class EDD_Cron */ /* function EDD_Cron::__construct() – Get things going */ /* function EDD_Cron::add_schedules() – Registers new cron schedules */ /* function EDD_Cron::schedule_events() – Schedules our events */ /* function EDD_Cron::weekly_events() – Schedule weekly events */ /* function EDD_Cron::daily_events() – Schedule daily events */ $edd_cron = new EDD_Cron;