PATH:
home
/
lab2454c
/
igpma.com
/
wp-content
/
plugins
/
woocommerce
/
packages
/
action-scheduler
/
classes
/
schedules
<?php /** * Class ActionScheduler_NullSchedule */ class ActionScheduler_NullSchedule extends ActionScheduler_SimpleSchedule { /** * Make the $date param optional and default to null. * * @param null $date The date & time to run the action. */ public function __construct( DateTime $date = null ) { $this->scheduled_date = null; } /** * This schedule has no scheduled DateTime, so we need to override the parent __sleep() * @return array */ public function __sleep() { return array(); } public function __wakeup() { $this->scheduled_date = null; } }
[-] ActionScheduler_IntervalSchedule.php
[edit]
[-] ActionScheduler_SimpleSchedule.php
[edit]
[-] ActionScheduler_CanceledSchedule.php
[edit]
[+]
..
[-] ActionScheduler_CronSchedule.php
[edit]
[-] ActionScheduler_NullSchedule.php
[edit]
[-] ActionScheduler_Schedule.php
[edit]