ActionScheduler_Abstract_RecurringSchedule::__construct()
Method of the class: ActionScheduler_Abstract_RecurringSchedule{}
No Hooks.
Return
null
. Nothing (null).
Usage
$ActionScheduler_Abstract_RecurringSchedule = new ActionScheduler_Abstract_RecurringSchedule(); $ActionScheduler_Abstract_RecurringSchedule->__construct( $date, $recurrence, $first );
- $date(DateTime) (required)
- The date & time to run the action.
- $recurrence(mixed) (required)
- The data used to determine the schedule's recurrence.
- $first(DateTime|null)
- (Optional) The date & time the first instance of this interval schedule ran.
Default: null, meaning this is the first instance
ActionScheduler_Abstract_RecurringSchedule::__construct() ActionScheduler Abstract RecurringSchedule:: construct code WC 9.3.3
public function __construct( DateTime $date, $recurrence, DateTime $first = null ) { parent::__construct( $date ); $this->first_date = empty( $first ) ? $date : $first; $this->recurrence = $recurrence; }