Report_Tab


Source

File: src/Tribe/Payouts/Tabbed_View/Report_Tab.php

class Report_Tab extends \Tribe__Tabbed_View__Tab {

	/**
	 * @var bool
	 */
	protected $visible = true;

	/**
	 * Gets the Tabbed View slug
	 * @return void
	 */
	public function get_slug() {
		return Report::$tab_slug;
	}

	/**
	 * Gets the Tabbed View label
	 */
	public function get_label() {
		return __( 'Payouts', 'tribe-events-community-tickets' );
	}
}


Top ↑

Methods