HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/globfdxw/www/wp-content/plugins/the-events-calendar/common/src/Common/Template.php
<?php
/**
 * TEC Common Template - Can be used with ALL Common Views.
 *
 * @since 6.5.4
 *
 * @package TEC\Common;
 */

namespace TEC\Common;

use Tribe__Template as Base_Template;
use Tribe__Main as Common_Plugin;

/**
 * Class Template
 *
 * @since 6.5.4
 */
class Template extends Base_Template {

	/**
	 * Template constructor.
	 */
	public function __construct() {
		$this->set_template_origin( Common_Plugin::instance() );
		$this->set_template_folder( 'src/views' );
		$this->set_template_context_extract( true );
		$this->set_template_folder_lookup( true );
	}
}