%PDF- %PDF-
Direktori : /var/www/html/higroup/wp-content/plugins/event-tickets/src/views/blocks/tickets/ |
Current File : /var/www/html/higroup/wp-content/plugins/event-tickets/src/views/blocks/tickets/quantity-remove.php |
<?php /** * Block: Tickets * Quantity Remove * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/tickets/blocks/tickets/quantity-remove.php * * See more documentation about our Blocks Editor templating system. * * @link https://evnt.is/1amp Help article for RSVP & Ticket template files. * * @since 4.9.3 * @since 4.11.3 Updated the button to include a type - helps avoid submitting forms unintentionally. * @since 4.11.4 Added accessibility classes to screen reader text element. * @since 4.12.0 Removed `type="submit"` from button element, as it's its default. * * @version 4.12.0 * * @var $this Tribe__Tickets__Editor__Template */ $ticket = $this->get( 'ticket' ); $button_title = sprintf( // translators: %s: ticket name. _x( 'Decrease ticket quantity for %s', 'Decrease ticket quantity button title', 'event-tickets' ), $ticket->name ); ?> <button class="tribe-tickets__item__quantity__remove" title="<?php echo esc_attr( $button_title ); ?>" type="button" > <span class="screen-reader-text tribe-common-a11y-visual-hide"><?php echo esc_html( $button_title ); ?></span> <?php echo esc_html_x( '-', 'A minus sign, remove ticket.', 'event-tickets' ); ?> </button>