. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 54.36.91.62 / Your IP :
216.73.216.178 [
Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : eticmes ( 123698) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/eticmes/www/wp-content/plugins/the-events-calendar/src/Tribe/ |
Upload File : |
<?php
class Tribe__Events__Featured_Events {
const FEATURED_EVENT_KEY = '_tribe_featured';
/**
* Marks an event as featured.
*
* @param int|WP_Post $event
*
* @return bool
*/
public function feature( $event = null ) {
$event_id = Tribe__Main::post_id_helper( $event );
if ( ! $event_id ) {
return false;
}
return (bool) update_post_meta( $event_id, self::FEATURED_EVENT_KEY, true );
}
/**
* Clears the featured status of an event.
*
* @param int|WP_Post $event
*
* @return bool
*/
public function unfeature( $event = null ) {
$event_id = Tribe__Main::post_id_helper( $event );
if ( ! $event_id ) {
return false;
}
return (bool) delete_post_meta( $event_id, self::FEATURED_EVENT_KEY );
}
/**
* Confirms if an event is featured.
* @param int|WP_Post $event
*
* @return bool
*/
public function is_featured( $event = null ) {
$event_id = Tribe__Main::post_id_helper( $event );
if ( ! $event_id ) {
return false;
}
return (bool) get_post_meta( $event_id, self::FEATURED_EVENT_KEY, true );
}
/**
* Indicates is the specified query (or the current global WP_Query object if not
* specified) relates to featured events.
*
* @param WP_Query|null $query
*
* @return bool
*/
public function is_featured_query( WP_Query $query = null ) {
if ( null === $query ) {
$query = $GLOBALS['wp_query'];
}
return tribe_is_truthy( $query->get( 'featured' ) );
}
/**
* Indicates if 'featured' is set to a positive value either in the URL query
* or the posted data (if any).
*
* @return bool
*/
public function featured_events_requested() {
return tribe_is_truthy( tribe_get_request_var( 'featured', false ) ) || tribe_is_truthy( tribe_get_request_var( 'tribe_featuredevent', false ) )
;
}
}