ActionScheduler_wpPostStore::get_status() public WC 1.0
Return an action's status, as stored in the post status column
{} It's a method of the class: ActionScheduler_wpPostStore{}
No Hooks.
Return
Mixed.
Usage
$ActionScheduler_wpPostStore = new ActionScheduler_wpPostStore(); $ActionScheduler_wpPostStore->get_status( $action_id );
- $action_id(string) (required)
- -
Code of ActionScheduler_wpPostStore::get_status() ActionScheduler wpPostStore::get status WC 5.0.0
public function get_status( $action_id ) {
$status = $this->get_post_column( $action_id, 'post_status' );
if ( $status === null ) {
throw new InvalidArgumentException( __( 'Invalid action ID. No status found.', 'woocommerce' ) );
}
return $this->get_action_status_by_post_status( $status );
}