HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/studis.kauko.lt/wp-content/plugins/the-events-calendar/src/Tribe/Event_Status/Template.php
<?php
/**
 * Provides a template instance specialized for Event Status templates.
 *
 * @since   5.11.0
 *
 * @package Tribe\Events\Event_Status
 */

namespace Tribe\Events\Event_Status;

use Tribe__Events__Main as Events_Plugin;

/**
 * Class Template
 *
 * @since   5.11.0
 *
 * @package Tribe\Events\Event_Status
 */
class Template extends \Tribe__Template {

	/**
	 * Template constructor.
	 *
	 * @since 5.11.0
	 */
	public function __construct() {
		$this->set_template_origin( tribe( 'tec.main' ) );
		$this->set_template_folder( 'src/views/v2/event-status' );

		// Setup to look for theme files.
		$this->set_template_folder_lookup( true );

		// Configures this templating class extract variables.
		$this->set_template_context_extract( true );
	}
}