File ManagerCurrent Directory: wp-content/plugins/wpforms/vendor/woocommerce/action-scheduler/classes/actionsLinux appserver-7a7af3b2-php-0c9ec09e2f9746c2a80fa3756c076432 6.12.94+ #1 SMP Fri Jul 17 09:26:56 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