ActionScheduler_DBStore::save_actionpublicWC 1.0

Save an action. Can save duplicate action as well, prefer using save_unique_action instead.

Method of the class: ActionScheduler_DBStore{}

No Hooks.

Returns

Int. Action ID.

Usage

$ActionScheduler_DBStore = new ActionScheduler_DBStore();
$ActionScheduler_DBStore->save_action( $action, ?DateTime $scheduled_date );
$action(ActionScheduler_Action) (required)
Action object.
?DateTime $scheduled_date
.
Default: null

ActionScheduler_DBStore::save_action() code WC 10.8.1

public function save_action( ActionScheduler_Action $action, ?DateTime $scheduled_date = null ) {
	return $this->save_action_to_db( $action, $scheduled_date, false );
}