| Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/views/modal/registration-js.php |
<?php
/**
* Modal: Registration-JS
*
* Override this template in your own theme by creating a file at:
* [your-theme]/tribe/tickets/modal/registration-js.php
*
* @link https://evnt.is/1amp Help article for RSVP & Ticket template files.
*
* @since 4.11.0
* @since 4.11.3 Reformat a bit of the code around the button - no functional changes.
* @since 4.11.3.1 Fix PHP errors when there are no tickets.
* @since 5.0.3 Updated template link.
*
* @version 5.0.3
*
* @var string $provider_id Which provider we are using here.
*
*/
/** @var Tribe__Tickets__Attendee_Registration__View $view */
$view = tribe( 'tickets.attendee_registration.view' );
/** @var Tribe__Tickets__Editor__Template $template */
$template = tribe( 'tickets.editor.template' );
$providers = wp_list_pluck( $tickets, 'provider' );
$provider_class = '';
$has_tpp = false;
$event_id = get_the_ID();
$non_meta_count = 0;
/** @var Tribe__Tickets_Plus__Meta $meta */
$meta = tribe( 'tickets-plus.meta' );
if ( ! empty( $providers ) ) {
$providers_arr = array_unique( wp_list_pluck( $providers, 'attendee_object' ) );
$provider = $providers[0];
$provider_class = $view->get_form_class( $providers_arr[0] );
$has_tpp = in_array( Tribe__Tickets__Commerce__PayPal__Main::ATTENDEE_OBJECT, $providers, true );
$is_tickets_commerce = tec_tickets_commerce_is_enabled() && ( get_class( $provider ) === \TEC\Tickets\Commerce\Module::class || in_array( \TEC\Tickets\Commerce\Module::class, $providers, true ) );
}
?>
<div class="tribe-tickets__item__attendee__fields">
<h2 class="tribe-common-h3 tribe-common-h4--min-medium tribe-common-h--alt tribe-tickets__item__attendee__fields__title"><?php esc_html_e( 'Attendee Details', 'event-tickets' ); ?></h2>
<?php $template->template(
'components/notice',
[
'id' => 'tribe-tickets__notice__attendee-modal',
'notice_classes' => [
'tribe-tickets__notice--error',
'tribe-tickets__validation-notice',
],
'content' => sprintf(
esc_html_x(
'You have %s ticket(s) with a field that requires information.',
'Note about missing required fields, %s is the html-wrapped number of tickets.',
'event-tickets'
),
'<span class="tribe-tickets__notice--error__count">1</span>'
)
]
); ?>
<div
id="tribe-modal__attendee_registration"
method="post"
class="tribe-tickets__item__attendee__fields__form <?php echo sanitize_html_class( $provider_class ); ?> tribe-validation"
name="event<?php echo esc_attr( $event_id ); ?>"
autocomplete="off"
novalidate
>
<?php foreach ( $tickets as $ticket ) : ?>
<?php
// Only include tickets with meta.
if ( ! $meta->ticket_has_meta( $ticket['id'] ) ) {
$non_meta_count ++;
continue;
}
?>
<div class="tribe-tickets__item__attendee__fields__container" data-ticket-id="<?php echo esc_attr( $ticket['id'] ); ?>">
<h3 class="tribe-common-h5 tribe-common-h5--min-medium tribe-common-h--alt tribe-ticket__heading">
<?php echo esc_html( get_the_title( $ticket['id'] ) ); ?>
</h3>
</div>
<?php endforeach; ?>
<?php
$notice_classes = [
'tribe-tickets__notice--non-ar',
];
if ( ! empty( $non_meta_count ) ) {
$notice_classes[] = 'tribe-common-a11y-hidden';
}
$template->template(
'components/notice',
[
'notice_classes' => $notice_classes,
'content' => sprintf(
esc_html_x(
'There are %s other tickets in your cart that do not require attendee information.',
'Note that there are more tickets in the cart, %s is the html-wrapped number.',
'event-tickets'
),
'<span id="tribe-tickets__non-ar-count">' . absint( $non_meta_count ) . '</span>'
)
]
);
?>
<input type="hidden" name="tribe_tickets_saving_attendees" value="1"/>
<input type="hidden" name="tribe_tickets_ar" value="1"/>
<input type="hidden" name="tribe_tickets_ar_data" value="" id="tribe_tickets_ar_data"/>
<div class="tribe-tickets__item__attendee__fields__footer">
<?php if ( $has_tpp || $is_tickets_commerce ) : ?>
<button
type="submit"
name="checkout-button"
>
<?php esc_html_e( 'Save and Checkout', 'event-tickets' ); ?>
</button>
<?php else: ?>
<button
type="submit"
class="tribe-common-c-btn-link tribe-common-c-btn--small tribe-block__tickets__item__attendee__fields__footer_submit tribe-tickets__attendee__fields__footer_cart-button tribe-validation-submit"
name="cart-button"
>
<?php esc_html_e( 'Save and View Cart', 'event-tickets' ); ?>
</button>
<span class="tribe-block__tickets__item__attendee__fields__footer__divider"><?php esc_html_e( 'or', 'event-tickets' ); ?></span>
<button
type="submit"
class="tribe-common-c-btn tribe-common-c-btn--small tribe-block__tickets__item__attendee__fields__footer_submit tribe-tickets__attendee__fields__footer_checkout-button tribe-validation-submit"
name="checkout-button"
>
<?php esc_html_e( 'Checkout Now', 'event-tickets' ); ?>
</button>
<?php endif; ?>
</div>
</form>
</div>