ActionScheduler_wpPostStore::get_date_gmt()publicWC 1.0

Get Date GMT.

Method of the class: ActionScheduler_wpPostStore{}

No Hooks.

Return

ActionScheduler_DateTime. The date the action is schedule to run, or the date that it ran.

Usage

$ActionScheduler_wpPostStore = new ActionScheduler_wpPostStore();
$ActionScheduler_wpPostStore->get_date_gmt( $action_id );
$action_id(int) (required)
Action ID.

ActionScheduler_wpPostStore::get_date_gmt() code WC 8.6.1

public function get_date_gmt( $action_id ) {
	$post = get_post( $action_id );
	if ( empty( $post ) || ( self::POST_TYPE !== $post->post_type ) ) {
		/* translators: %s is the action ID */
		throw new InvalidArgumentException( sprintf( __( 'Unidentified action %s', 'woocommerce' ), $action_id ) );
	}
	if ( 'publish' === $post->post_status ) {
		return as_get_datetime_object( $post->post_modified_gmt );
	} else {
		return as_get_datetime_object( $post->post_date_gmt );
	}
}