Tribe__Events__Community__Tickets__Gateway__Abstract::fee_percentage()

returns the fee percentage for tickets. Combines the gateway percentage with the site percentage if configured with one.

Contents


Return

(float)


Top ↑

Source

File: src/Tribe/Gateway/Abstract.php

	public function fee_percentage() {
		$percentage = $this->fee_percentage;

		if ( $this->has_site_fee_percentage() ) {
			$percentage += (float) $this->site_fee_percentage;
		}

		return $percentage;
	}