Hooks::render_sale_price_fields( int $ticket_id, int $post_id, array $context )

Renders the sale price fields.


Parameters

$ticket_id

(int) (Required) The ticket ID.

$post_id

(int) (Required) The post ID.

$context

(array) (Required) The context.


Top ↑

Return

(void)


Top ↑

Source

File: src/Tickets/Commerce/Hooks.php

	public function render_sale_price_fields( $ticket_id, $post_id, $context ): void {
		$this->container->make( Editor\Metabox::class )->render_sale_price_fields( $ticket_id, $post_id, $context );
	}

Top ↑

Changelog

Changelog
Version Description
5.9.0 Introduced.