HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/lipovac/wp-content/plugins/the-events-calendar/src/functions/advanced-functions/event.php
<?php
/**
 * The Events Calendar Advanced Functions for the Event Post Type
 *
 * These functions can be used to manipulate Event data. These functions may be useful for integration with other WordPress plugins and extended functionality.
 */

// Don't load directly
if ( ! defined( 'ABSPATH' ) ) {
	die( '-1' );
}

if ( class_exists( 'Tribe__Events__Main' ) ) {

	/**
	 * Create an Event
	 *
	 * $args accepts all the args that can be passed to wp_insert_post().
	 * In addition to that, the following args can be passed specifically
	 * for the process of creating an Event:
	 *
	 * - EventStartDate date string (required) - Start date of the Event.
	 * - EventEndDate date string (required) - End date of the Event.
	 * - EventAllDay bool - Set to true if event has no start / end time and should run all day.
	 * - EventStartHour string - Event start hour (01-12 if `EventStartMeridian` is also passed, else 00-23).
	 * - EventStartMinute string - Event start minute (00-59).
	 * - EventStartMeridian string - Event start meridian (am or pm).
	 * - EventEndHour string - Event end hour (01-12 if `EventEndMeridian` is also passed, else 00-23).
	 * - EventEndMinute string - Event end minute (00-59).
	 * - EventEndMeridian string - Event end meridian (am or pm).
	 * - EventHideFromUpcoming bool - Set to true to hide this Event from the upcoming list view.
	 * - EventShowMapLink bool - Set to true to display a link to the map in the Event view.
	 * - EventShowMap bool - Set to true to embed the map in the Event view.
	 * - EventCost string - Default cost of the Event.
	 * - EventURL string - Link to the Event Website or Third-Party page
	 * - Venue array - Array of data to create or update an Venue to be associated with the Event. {@link tribe_create_venue}.
	 * - Organizer array - Array of data to create or update an Organizer to be associated with the Event. {@link tribe_create_organizer}.
	 *
	 * Note: If ONLY the 'VenueID'/'OrganizerID' value is set in the 'Venue'/'Organizer' array,
	 * then the specified Venue/Organizer will be associated with this Event without attempting
	 * to edit the Venue/Organizer. If NO 'VenueID'/'OrganizerID' is passed, but other Venue/Organizer
	 * data is passed, then a new Venue/Organizer will be created.
	 *
	 * Also note that this function can be used only for the creation of events, supplying
	 * a post_type argument therefore is superfluous as it will be reset to the events post
	 * type in any case.
	 *
	 * @param array $args Elements that make up post to insert.
	 *
	 * @return int|bool ID of the event that was created. False if insert failed.
	 * @link     http://codex.wordpress.org/Function_Reference/wp_insert_post
	 * @see      wp_insert_post()
	 * @see      tribe_create_venue()
	 * @see      tribe_create_organizer()
	 * @category Events
	 */
	function tribe_create_event( $args ) {
		$args['post_type'] = Tribe__Events__Main::POSTTYPE;
		$postId            = Tribe__Events__API::createEvent( $args );

		return is_wp_error( $postId ) ? false : $postId;
	}

	/**
	 * Update an Event
	 *
	 * @param int|bool   $postId ID of the event to be modified.
	 * @param array $args   Args for updating the post. See {@link tribe_create_event()} for more info.
	 *
	 * @return int|bool ID of the event that was created. False if update failed.
	 * @link     http://codex.wordpress.org/Function_Reference/wp_update_post
	 * @see      wp_update_post()
	 * @see      tribe_create_event()
	 * @category Events
	 */
	function tribe_update_event( $postId, $args ) {
		$postId = Tribe__Events__API::updateEvent( $postId, $args );

		return is_wp_error( $postId ) ? false : $postId;
	}

	/**
	 * Delete an Event
	 *
	 * @param int  $postId       ID of the event to be deleted.
	 * @param bool $force_delete Whether to bypass trash and force deletion. Defaults to false.
	 *
	 * @return bool false if delete failed.
	 * @link     http://codex.wordpress.org/Function_Reference/wp_delete_post
	 * @see      wp_delete_post()
	 * @category Events
	 */
	function tribe_delete_event( $postId, $force_delete = false ) {
		$success = Tribe__Events__API::deleteEvent( $postId, $force_delete );

		return $success;
	}

}