ActionScheduler_wpPostStore::stake_claim()
Stake claim.
Method of the class: ActionScheduler_wpPostStore{}
No Hooks.
Return
ActionScheduler_ActionClaim
.
Usage
$ActionScheduler_wpPostStore = new ActionScheduler_wpPostStore(); $ActionScheduler_wpPostStore->stake_claim( $max_actions, $before_date, $hooks, $group );
- $max_actions(int)
- Maximum number of actions.
Default: 10 - $before_date(DateTime)
- Jobs must be schedule before this date.
Default: now - $hooks(array)
- Claim only actions with a hook or hooks.
Default: array() - $group(string)
- Claim only actions in the given group.
Default: ''
ActionScheduler_wpPostStore::stake_claim() ActionScheduler wpPostStore::stake claim code WC 9.3.3
public function stake_claim( $max_actions = 10, DateTime $before_date = null, $hooks = array(), $group = '' ) { $this->claim_before_date = $before_date; $claim_id = $this->generate_claim_id(); $this->claim_actions( $claim_id, $max_actions, $before_date, $hooks, $group ); $action_ids = $this->find_actions_by_claim_id( $claim_id ); $this->claim_before_date = null; return new ActionScheduler_ActionClaim( $claim_id, $action_ids ); }