%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /proc/19851/cwd/wp-content/plugins/event-tickets/src/views/tickets/
Upload File :
Create Path :
Current File : //proc/19851/cwd/wp-content/plugins/event-tickets/src/views/tickets/orders-pp-tickets.php

<?php
/**
 * List of PayPal tickets orders
 *
 * Override this template in your own theme by creating a file at [your-theme]/tribe-events/tickets/orders-pp-tickets.php
 *
 * @package TribeEventsCalendar
 *
 * @since 4.7
 * @since 4.10.9 Uses new functions to get singular and plural texts.
 * @since 4.12.1 Account for empty post type object, such as if post type got disabled.
 *
 * @version 4.12.1
 */

if ( ! defined( 'ABSPATH' ) ) {
	die( '-1' );
}

/** @var \Tribe__Tickets__Commerce__PayPal__Tickets_View $view */
$view      = tribe( 'tickets.commerce.paypal.view' );
$post_id   = get_the_ID();
$post      = get_post( $post_id );
$post_type = get_post_type_object( $post->post_type );
$user_id   = get_current_user_id();
$user_info = get_userdata( $user_id );

if ( ! $view->has_ticket_attendees( $post_id, $user_id ) ) {
	return;
}

$post_type_singular = $post_type ? $post_type->labels->singular_name : _x( 'Post', 'fallback post type singular name', 'event-tickets' );

$attendee_groups = $view->get_post_attendees_by_purchaser( $post_id, $user_id );
?>
<div class="tribe-pp">
	<h2><?php
		echo esc_html(
			sprintf(
				__( 'My %1$s for this %2$s', 'event-tickets' ),
				tribe_get_ticket_label_plural( basename( __FILE__ ) ),
				$post_type_singular
			)
		); ?>
	</h2>
	<?php foreach ( $attendee_groups as $attendee_group ) : ?>
		<?php
		$first_attendee = reset( $attendee_group );
		?>
		<div class="user-details">
			<p>
				<?php
				printf(
					esc_html__( 'Purchased by %1$s (%2$s)', 'event-tickets' ),
					esc_html( $first_attendee['purchaser_name'] ),
					'<a href="' . esc_url( 'mailto:' . $first_attendee['purchaser_email'] ) .'">' . esc_html( $first_attendee['purchaser_email'] ) . '</a>'
				);

				printf(
					esc_html__( ' on %s', 'event-tickets' ),
					date_i18n( Tribe__Date_Utils::DATEONLYFORMAT, strtotime( esc_attr( $first_attendee['purchase_time'] ) ) )
				);
				?>
			</p>
			<?php
				/**
				* Inject content into the RSVP User Details block on the orders page
				*
				* @param array $attendee_group Attendee array
				* @param int $post_id
				*/
				do_action( 'event_tickets_user_details_tpp', $attendee_group, $post_id );
				?>
		</div>
		<ul class="tribe-tpp-list tribe-list">
			<?php foreach ( $attendee_group as $i => $attendee ) : ?>
				<?php $key = $attendee['order_id']; ?>
				<li class="tribe-item<?php echo $view->is_tpp_ticket_restricted( $post_id, $attendee['product_id'] ) ? 'tribe-disabled' : ''; ?>" <?php echo $view->get_restriction_attr( $post_id, $attendee['product_id'] ); ?> id="attendee-<?php echo $attendee['order_id']; ?>">
					<p class="list-attendee"><?php printf( esc_html__( 'Attendee %d', 'event-tickets' ), $i + 1 ); ?></p>
					<div class="tribe-answer">
						<!-- Wrapping <label> around both the text and the <select> will implicitly associate the text with the label. -->
						<!-- See https://www.w3.org/WAI/tutorials/forms/labels/#associating-labels-implicitly -->
						<label>
							<?php echo esc_html_x( 'Payment status: ', 'order status label', 'event-tickets' ); ?>
							<?php
								$view->render_ticket_status( $attendee['order_status'] );
							?>
						</label>
						<div class="ticket-type"><span class="type-label"><?php esc_html_e( 'Type: ', 'event-tickets' );?></span><?php esc_html_e( $attendee['ticket'] );?></div>
					</div>
					<?php
					/**
					 * Inject content into an RSVP attendee block on the RVSP orders page
					 *
					 * @since 4.7
					 *
					 * @param array $attendee Attendee array
					 * @param WP_Post $post Post object that the tickets are tied to
					 */
					do_action( 'event_tickets_orders_attendee_contents', $attendee, $post );
					?>
				</li>
			<?php endforeach; ?>
		</ul>
	<?php endforeach; ?>
</div>

Zerion Mini Shell 1.0