ActionScheduler_Abstract_RecurringSchedule::__sleep()
For PHP 5.2 compat, since DateTime objects can't be serialized
Method of the class: ActionScheduler_Abstract_RecurringSchedule{}
No Hooks.
Return
Array
.
Usage
$ActionScheduler_Abstract_RecurringSchedule = new ActionScheduler_Abstract_RecurringSchedule(); $ActionScheduler_Abstract_RecurringSchedule->__sleep();
ActionScheduler_Abstract_RecurringSchedule::__sleep() ActionScheduler Abstract RecurringSchedule:: sleep code WC 9.6.0
public function __sleep() { $sleep_params = parent::__sleep(); $this->first_timestamp = $this->first_date->getTimestamp(); return array_merge( $sleep_params, array( 'first_timestamp', 'recurrence', ) ); }