Esempio n. 1
0
/**
 * Returns the balance status for an event.
 *
 * @since	1.3
 * @param	int		$event_id	The event ID.
 * @return	str					The balance status of the event.
 */
function mdjm_get_event_balance_status($event_id)
{
    if (empty($event_id)) {
        return false;
    }
    $event = new MDJM_Event($event_id);
    return $event->get_balance_status();
}