Ticket::get_status_count_meta_key( TECTicketsCommerceStatusStatus_Interface $status )

Gets the meta Key for a given status count on a ticket.


Parameters

$status

(TECTicketsCommerceStatusStatus_Interface) (Required)


Top ↑

Return

(string)


Top ↑

Source

File: src/Tickets/Commerce/Ticket.php

	public static function get_status_count_meta_key( Status_Interface $status ) {
		return static::$status_count_meta_key_prefix . ':' . $status->get_slug();
	}

Top ↑

Changelog

Changelog
Version Description
5.2.0 Introduced.