Modal::render_modal()
Render the Attendees preview modal.
Source
File: src/Tickets/Admin/Attendees/Modal.php
public function render_modal() {
if ( ! $this->should_render() ) {
return;
}
// Enqueue `Attendees` assets.
tribe_asset_enqueue_group( Assets::$group_key );
tribe_asset_enqueue_group( 'tribe-tickets-admin' );
// Render the modal contents.
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo $this->get_modal_content();
}
Changelog
| Version | Description |
|---|---|
| 5.9.1 | Introduced. |