Zapier_Provider::add_canceled_to_queue( int $post_id, TECEvent_AutomatorZapierarray $data )
Add a canceled event post id to a trigger queue.
Contents
Parameters
- $post_id
-
(int) (Required) ID of the post we're saving.
- $data
-
(<span class="TECEvent_AutomatorZapierarray">TECEvent_AutomatorZapierarray) (Required) The meta data we're trying to save.
Source
File: src/Common/Event_Automator/Zapier/Zapier_Provider.php
public function add_canceled_to_queue( $post_id, $data ) {
$this->container->make( Canceled_Events::class )->add_to_queue( $post_id, $data );
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |