Controller::get_template()

Gets the template instance used to setup the rendering html.


Return

(Tribe__Template)


Top ↑

Source

File: src/Events/Integrations/Plugins/Elementor/Controller.php

	public function get_template() {
		if ( empty( $this->template ) ) {
			$this->template = new Template();
			$this->template->set_template_origin( tribe( 'tec.main' ) );
			$this->template->set_template_folder( 'src/admin-views/integrations/plugins/elementor' );
			$this->template->set_template_context_extract( true );
		}

		return $this->template;
	}

Top ↑

Changelog

Changelog
Version Description
6.4.0 Introduced.