Page::get_template()

Configure and returns the template instance controlling the admin page.


Return

(Tribe__Template)


Top ↑

Source

File: src/Tribe/Admin/Manager/Page.php

	public function get_template() {
		if ( empty( $this->template ) ) {
			$this->setup_template();
		}

		return $this->template;
	}

Top ↑

Changelog

Changelog
Version Description
5.9.0 Introduced.