Hooks::render_sale_price_fields( int $ticket_id, int $post_id, array $context )
Renders the sale price fields.
Contents
Parameters
- $ticket_id
-
(int) (Required) The ticket ID.
- $post_id
-
(int) (Required) The post ID.
- $context
-
(array) (Required) The context.
Return
(void)
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 );
}
Changelog
| Version | Description |
|---|---|
| 5.9.0 | Introduced. |