%PDF- %PDF-
Direktori : /proc/19851/cwd/wp-content/plugins/event-tickets/src/Tribe/ |
Current File : //proc/19851/cwd/wp-content/plugins/event-tickets/src/Tribe/Abstract_Attendance_Totals.php |
<?php use Tribe\Tooltip\View as Tooltip_View; abstract class Tribe__Tickets__Abstract_Attendance_Totals { protected $event_id = 0; protected $relative_priority = 10; /** * Sets up totals for the specified event. * * @param int $event_id */ public function __construct( $event_id = 0 ) { if ( ! $this->set_event_id( $event_id ) ) { return; } $this->calculate_totals(); } /** * Sets the event ID, based on the provided event ID but defaulting * to the value of the 'event_id' URL param, if set. * * @param int $event_id * * @return bool */ protected function set_event_id( $event_id = 0 ) { if ( $event_id ) { $this->event_id = absint( $event_id ); } elseif ( isset( $_GET[ 'event_id' ] ) ) { $this->event_id = absint( $_GET[ 'event_id' ] ); } return (bool) $this->event_id; } /** * Calculate total attendance for the current event. */ abstract protected function calculate_totals(); /** * Makes the totals available within the attendee summary screen. */ public function integrate_with_attendee_screen() { add_action( 'tribe_tickets_attendees_totals', array( $this, 'print_totals' ), $this->relative_priority ); } /** * Prints an HTML (unordered) list of attendance totals. */ abstract public function print_totals(); /** * Get Attendee Total Sold Tooltip * * @since 4.10.5 * * @return string a string of html for the tooltip */ public function get_total_sold_tooltip() { $message = _x( 'Includes all ticketed attendees regardless of order status.', 'total sold tooltip', 'event-tickets' ); $args = [ 'classes' => 'required' ]; /** @var Tooltip_View $tooltip */ $tooltip = tribe( 'tooltip.view' ); return $tooltip->render_tooltip( $message, $args ); } /** * Get Attendee Total Completed Orders Tooltip * * @since 4.10.5 * * @return string a string of html for the tooltip */ public function get_total_completed_tooltip() { $message = _x( 'Includes ticketed attendees with orders marked Completed.', 'total complete tooltip', 'event-tickets' ); $args = [ 'classes' => 'required' ]; /** @var Tooltip_View $tooltip */ $tooltip = tribe( 'tooltip.view' ); return $tooltip->render_tooltip( $message, $args ); } /** * Get Attendee Total Cancelled Orders Tooltip * * @since 4.10.5 * * @return string a string of html for the tooltip */ public function get_total_cancelled_tooltip() { // For future use return; } /** * Get Attendee Total Refunded Orders Tooltip * * @since 4.10.8 * * @return string a string of html for the tooltip */ public function get_total_refunded_tooltip() { // For future use return; } }