File "ActionScheduler_Abstract_Schedule.php"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/plugins/mailpoet/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schedule.php
File size: 969 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
if (!defined('ABSPATH')) exit;
abstract class ActionScheduler_Abstract_Schedule extends ActionScheduler_Schedule_Deprecated {
 private $scheduled_date = NULL;
 protected $scheduled_timestamp = NULL;
 public function __construct( DateTime $date ) {
 $this->scheduled_date = $date;
 }
 abstract public function is_recurring();
 abstract protected function calculate_next( DateTime $after );
 public function get_next( DateTime $after ) {
 $after = clone $after;
 if ( $after > $this->scheduled_date ) {
 $after = $this->calculate_next( $after );
 return $after;
 }
 return clone $this->scheduled_date;
 }
 public function get_date() {
 return $this->scheduled_date;
 }
 public function __sleep() {
 $this->scheduled_timestamp = $this->scheduled_date->getTimestamp();
 return array(
 'scheduled_timestamp',
 );
 }
 public function __wakeup() {
 $this->scheduled_date = as_get_datetime_object( $this->scheduled_timestamp );
 unset( $this->scheduled_timestamp );
 }
}