Tribe__Tickets__Abstract_Attendance_Totals::get_total_completed_tooltip()
Get Attendee Total Completed Orders Tooltip
Return
(string) a string of html for the tooltip
Source
File: src/Tribe/Abstract_Attendance_Totals.php
public function get_total_completed_tooltip() {
$message = _x( 'Includes ticketed attendees with orders marked Completed.', 'total complete tooltip', 'event-tickets' );
$args = [ 'classes' => 'required' ];
return tribe( 'tooltip.view' )->render_tooltip( $message, $args );
}
Changelog
| Version | Description |
|---|---|
| 4.10.5 | Introduced. |