Components::render_ar_fields_template( array $args )
Render the Attendee Registration fields template.
Contents
Parameters
- $args
-
(array) (Required) Array of arguments.
Source
File: src/Tickets_Plus/Emails/Email/Components.php
public function render_ar_fields_template( array $args ): void {
$args = $this->add_attendee_meta_to_args( $args );
/** @var \Tribe__Tickets_Plus__Template $template */
$template = tribe( 'tickets-plus.template' );
$template->template( 'emails/template-parts/body/ticket/ar-fields', $args, true );
}
Changelog
| Version | Description |
|---|---|
| 5.7.0 | Introduced. |