File Editor
Directories:
.. (Back)
Admin
Aggregator
Ajax
Collections
Customizer
Dates
Editor
Event_Status
Event_Tickets
Featured_Events
Google
Importer
Integrations
JSON_LD
Linked_Posts
Meta
Models
REST
Repositories
Revisions
Service_Providers
Shortcode
Taxonomy
Template
Utils
Validator
Views
Files:
API.php
Adjacent_Events.php
Admin_List.php
Aggregator.php
Amalgamator.php
Assets.php
Capabilities.php
Constants.php
Cost_Utils.php
Deactivation.php
Default_Values.php
Editor.php
Embedded_Maps.php
Event_Cleaner.php
Event_Cleaner_Scheduler.php
Featured_Events.php
Front_Page_View.php
Gutenberg.php
I18n.php
Ignored_Events.php
Linked_Posts.php
Main.php
Options_Exception.php
Organizer.php
Plugin_Register.php
Post_Exception.php
Privacy.php
Query.php
Rewrite.php
Template_Factory.php
Templates.php
Timezones.php
Updater.php
Venue.php
iCal.php
Create New File
Create
Edit File: Featured_Events.php
<?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 ) ) ; } }
Save Changes
Rename File
Rename