Server IP : 66.29.132.124 / Your IP : 3.140.195.142 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/misswavenigeria.com/wp-content/plugins/event-tickets/src/Tickets/ |
Upload File : |
<?php namespace TEC\Tickets; /** * Class Event * * @since 5.1.9 * * @package TEC\Tickets */ class Event { /** * Value stored for the Events from TEC. * * @since 5.1.9 * * @var string */ protected static $post_type = 'tribe_events'; /** * Gets the TEC events CPT, will fallback into the Static variable on this class, but will try to pull from * TEC main class constant first. * * @since 5.1.9 * * * @return string */ public static function get_post_type() { if ( class_exists( '\Tribe__Events__Main' ) ) { return \Tribe__Events__Main::POSTTYPE; } return static::$post_type; } /** * Will filter event ID input to a filtered and relevant ID. * * @since 5.5.6 * @since 5.8.2 Add the `$context` parameter. * * @param numeric $event_id The event ID to be normalized. * @param string $context The context in which the event ID is being filtered. * * @return int|null The filtered value. */ public static function filter_event_id( $event_id, $context = 'default' ): ?int { $original_id = $event_id; /** * This filter allows retrieval of an event ID to be filtered before being accessed elsewhere. * * @since 5.5.6 * @since 5.8.2 Add the `$context` parameter and the `$original_id` parameter. * * @param int|null $event_id The event ID to be filtered. * @param string $context The context in which the event ID is being filtered. * @param int $original_id The original event ID. */ $event_id = apply_filters( 'tec_tickets_filter_event_id', $event_id, $context, $original_id ); return is_numeric( $event_id ) ? (int) $event_id : null; } }