mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-13 19:56:27 +09:00
797bc2fd98
git-subtree-dir: includes/lib/action-scheduler git-subtree-split: c828347715e6c3318c8ab8b4fea2d87b31d51aac
35 lines
670 B
PHP
35 lines
670 B
PHP
<?php
|
|
|
|
/**
|
|
* Class ActionScheduler_NullSchedule
|
|
*/
|
|
class ActionScheduler_NullSchedule extends ActionScheduler_SimpleSchedule {
|
|
|
|
/** @var DateTime|null */
|
|
protected $scheduled_date;
|
|
|
|
/**
|
|
* Make the $date param optional and default to null.
|
|
*
|
|
* @param null|DateTime $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();
|
|
}
|
|
|
|
/**
|
|
* Wakeup.
|
|
*/
|
|
public function __wakeup() {
|
|
$this->scheduled_date = null;
|
|
}
|
|
}
|