File "New_Events.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Common/Event_Automator/Zapier/Triggers/New_Events.php
File size: 1.23 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* The Zapier New Event Triggers.
*
* @since 6.0.0 Migrated to Common from Event Automator
* @package TEC\Event_Automator\Zapier\Triggers;
*/
namespace TEC\Event_Automator\Zapier\Triggers;
use TEC\Event_Automator\Zapier\Trigger_Queue\Abstract_Trigger_Queue;
use Tribe__Events__Main as TEC;
/**
* Class New_Events
*
* @since 6.0.0 Migrated to Common from Event Automator
*
* @package TEC\Event_Automator\Zapier\Triggers
*/
class New_Events extends Abstract_Trigger_Queue {
/**
* @inheritdoc
*/
protected static $queue_name = 'new_events';
/**
* @inheritdoc
*/
protected static $added_to_queue_meta_field = 'new_event_run_once';
/**
* @inheritdoc
*/
protected function validate_for_trigger( $post_id, $data ) {
if ( empty( $data['post'] ) ) {
return false;
}
$post = $data['post'];
if ( $post->post_type !== TEC::POSTTYPE ) {
return false;
}
if ( $post->post_status !== 'publish' ) {
return false;
}
$run_once = tribe_is_truthy( get_post_meta( $post_id, $this->get_meta_field_name(), true ) );
if ( $run_once ) {
return false;
}
// Set meta field so this event is added only once to the queue.
update_post_meta( $post_id, $this->get_meta_field_name(), true );
return true;
}
}