%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/higroup/wp-content/plugins/event-tickets/src/admin-views/editor/panel/
Upload File :
Create Path :
Current File : /var/www/html/higroup/wp-content/plugins/event-tickets/src/admin-views/editor/panel/settings.php

<?php
/** @var Tribe__Tickets__Tickets_Handler $tickets_handler */
$tickets_handler = tribe( 'tickets.handler' );

$header_id       = get_post_meta( $post_id, $tickets_handler->key_image_header, true );
$header_id       = ! empty( $header_id ) ? $header_id : '';
$header_img      = '';
$header_filename = '';

if ( ! empty( $header_id ) ) {
	$header_img      = wp_get_attachment_image( $header_id, 'full' );
	$header_filename = basename( get_attached_file( $header_id ) );
}
?>

<div id="tribe_panel_settings" class="ticket_panel panel_settings" aria-hidden="true" >
	<h4><?php
		echo esc_html(
			sprintf(
				_x( '%s Settings', 'meta box ticket form heading', 'event-tickets' ),
				tribe_get_ticket_label_singular( 'meta_box_ticket_form_heading' )
			)
		); ?>
	</h4>

	<section class="settings_main">
		<?php
		/**
		 * Allows for the insertion of additional elements into the ticket settings admin panel above the ticket table
		 *
		 * @since 4.6
		 *
		 * @param int Post ID
		 */
		do_action( 'tribe_events_tickets_settings_content_before', $post_id );

		/** @var Tribe__Tickets__Admin__Views $admin_views */
		$admin_views = tribe( 'tickets.admin.views' );

		$admin_views->template( 'editor/fieldset/settings-provider' );

		/**
		 * Allows for the insertion of additional elements into the ticket settings admin panel below the ticket table
		 *
		 * @since 4.6
		 *
		 * @param int Post ID
		 */
		do_action( 'tribe_events_tickets_settings_content', $post_id );
		?>
	</section>
	<section id="tribe-tickets-image">
		<div class="tribe-tickets-image-upload">
			<div class="input_block">
				<span class="ticket_form_label tribe-strong-label"><?php
					echo esc_html(
						sprintf(
							_x( '%s header image:', 'ticket image upload label', 'event-tickets' ),
							tribe_get_ticket_label_singular( 'ticket_image_upload_label' )
						)
					); ?>
				</span>
				<p class="description">
					<?php
					echo esc_html(
						sprintf(
							_x(
								'Select an image from your Media Library to display on emailed %s. For best results, use a .jpg, .png, or .gif at least 1160px wide.',
								'ticket image upload label description',
								'event-tickets'
							),
							tribe_get_ticket_label_singular_lowercase( 'ticket_image_upload_label_description' )
						)
					); ?>
				</p>
			</div>
			<input
				type="button"
				class="button"
				name="tribe-tickets[settings][header_image]"
				id="tribe_ticket_header_image"
				value="<?php esc_html_e( 'Select an Image', 'event-tickets' ); ?>"
			/>

			<span id="tribe_tickets_image_preview_filename" class="<?php echo ! empty( $header_filename )? esc_attr( '-active' ): ''; ?>">
				<span class="dashicons dashicons-format-image"></span>
				<span class="filename"><?php echo esc_html( $header_filename ); ?></span>
			</span>
		</div>
		<div class="tribe-tickets-image-preview">
			<a class="tribe_preview" id="tribe_ticket_header_preview">
				<?php
				// Can't escape - mixed html
				echo $header_img;
				?>
			</a>
			<p class="description">
				<a href="#" id="tribe_ticket_header_remove"><?php esc_html_e( 'Remove', 'event-tickets' ); ?></a>
			</p>

			<input
				type="hidden"
				id="tribe_ticket_header_image_id"
				class="settings_field"
				name="tribe-tickets[settings][header_image_id]"
				value="<?php echo esc_attr( $header_id ); ?>"
			/>
		</div>
	</section>

	<input type="button" id="tribe_settings_form_save" name="tribe_settings_form_save" value="<?php esc_attr_e( 'Save settings', 'event-tickets' ); ?>" class="button-primary" />
	<input type="button" id="tribe_settings_form_cancel" name="tribe_settings_form_cancel" value="<?php esc_attr_e( 'Cancel', 'event-tickets' ); ?>" class="button-secondary" />
</div>

Zerion Mini Shell 1.0