File Editor
Directories:
.. (Back)
Admin
Attendee_Registration
CSV_Importer
Cache
Commerce
Editor
Events
JSON_LD
Migration
Promoter
REST
RSVP
Repositories
Service_Providers
Shortcodes
Status
Tabbed_View
Validator
Files:
Abstract_Attendance_Totals.php
Assets.php
Attendance.php
Attendance_Totals.php
Attendee_Repository.php
Attendees.php
Attendees_Table.php
Data_API.php
Editor.php
Event_Repository.php
Global_ID.php
Global_Stock.php
Legacy_Provider_Support.php
Main.php
Metabox.php
Plugin_Register.php
Privacy.php
Query.php
RSVP.php
Redirections.php
Service_Provider.php
Templates.php
Theme_Compatibility.php
Ticket_Object.php
Ticket_Repository.php
Tickets.php
Tickets_Handler.php
Tickets_View.php
Updater.php
Version.php
Create New File
Create
Edit File: Redirections.php
<?php /** * Class Tribe__Tickets__Redirections * * @since 4.7 */ class Tribe__Tickets__Redirections { /** * Conditionally redirects the user if a URL is specified in the GET request. * * @since 4.7.3 */ public function maybe_redirect() { if ( empty( $_GET['tribe_tickets_redirect_to'] ) ) { return; } $url = rawurldecode( $_GET['tribe_tickets_redirect_to'] ); wp_safe_redirect( $url ); die(); } }
Save Changes
Rename File
Rename