Page::get_template()
Configure and returns the template instance controlling the admin page.
Return
Source
File: src/Tribe/Admin/Manager/Page.php
public function get_template() {
if ( empty( $this->template ) ) {
$this->setup_template();
}
return $this->template;
}
Changelog
| Version | Description |
|---|---|
| 5.9.0 | Introduced. |