PluginProbe
WANotifier for Forms and Actions / 2.7.13
WANotifier for Forms and Actions v2.7.13
3.1.1 3.1.0 3.0.4 2.7.10 2.7.11 2.7.12 2.7.13 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 3.0.0 3.0.1 3.0.2 3.0.3 trunk 0.1.0 0.1.1 1.0.0 1.0.1 1.0.2 All 67 releases
notifier / libraries / action-scheduler / deprecated / ActionScheduler_Schedule_Deprecated.php

ActionScheduler_Schedule_Deprecated.php in WANotifier for Forms and Actions 2.7.13, at libraries/action-scheduler/deprecated/ActionScheduler_Schedule_Deprecated.php

30 lines 831 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Class ActionScheduler_Abstract_Schedule
5 */
6 abstract class ActionScheduler_Schedule_Deprecated implements ActionScheduler_Schedule {
7
8 /**
9 * Get the date & time this schedule was created to run, or calculate when it should be run
10 * after a given date & time.
11 *
12 * @param DateTime $after DateTime to calculate against.
13 *
14 * @return DateTime|null
15 */
16 public function next( DateTime $after = null ) {
17 if ( empty( $after ) ) {
18 $return_value = $this->get_date();
19 $replacement_method = 'get_date()';
20 } else {
21 $return_value = $this->get_next( $after );
22 $replacement_method = 'get_next( $after )';
23 }
24
25 _deprecated_function( __METHOD__, '3.0.0', __CLASS__ . '::' . $replacement_method ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
26
27 return $return_value;
28 }
29 }
30