File ManagerCurrent Directory: wp-content/plugins/wpforms/vendor/woocommerce/action-scheduler/classes/actionsLinux appserver-0d5e4f1e-php-cc8da225320a42ba9b7d66cba40b1f03 6.6.123+ #1 SMP PREEMPT_DYNAMIC Wed Mar 11 09:04:28 UTC 2026 x86_64Edit File: ActionScheduler_CanceledAction.php <?php /** * Class ActionScheduler_CanceledAction * * Stored action which was canceled and therefore acts like a finished action but should always return a null schedule, * regardless of schedule passed to its constructor. */ class ActionScheduler_CanceledAction extends ActionScheduler_FinishedAction { /** * Construct. * * @param string $hook Action's hook. * @param array $args Action's arguments. * @param null|ActionScheduler_Schedule $schedule Action's schedule. * @param string $group Action's group. */ public function __construct( $hook, array $args = array(), ActionScheduler_Schedule $schedule = null, $group = '' ) { parent::__construct( $hook, $args, $schedule, $group ); if ( is_null( $schedule ) ) { $this->set_schedule( new ActionScheduler_NullSchedule() ); } } } Upload File Directory Listing NameTypeSizeActions.. (Parent Directory)DirActionScheduler_Action.phpFile3.64 KB Rename | Delete | EditActionScheduler_CanceledAction.phpFile882.00 B Rename | Delete | EditActionScheduler_FinishedAction.phpFile296.00 B Rename | Delete | EditActionScheduler_NullAction.phpFile600.00 B Rename | Delete | Edit