| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Class ActionScheduler_CanceledAction |
| 5 |
* |
| 6 |
* Stored action which was canceled and therefore acts like a finished action but should always return a null schedule, |
| 7 |
* regardless of schedule passed to its constructor. |
| 8 |
*/ |
| 9 |
class ActionScheduler_CanceledAction extends ActionScheduler_FinishedAction { |
| 10 |
|
| 11 |
/** |
| 12 |
* @param string $hook |
| 13 |
* @param array $args |
| 14 |
* @param ActionScheduler_Schedule $schedule |
| 15 |
* @param string $group |
| 16 |
*/ |
| 17 |
public function __construct( $hook, array $args = array(), ActionScheduler_Schedule $schedule = null, $group = '' ) { |
| 18 |
parent::__construct( $hook, $args, $schedule, $group ); |
| 19 |
if ( is_null( $schedule ) ) { |
| 20 |
$this->set_schedule( new ActionScheduler_NullSchedule() ); |
| 21 |
} |
| 22 |
} |
| 23 |
} |
| 24 |
|