| Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/Tickets/Seating/Admin/Template.php |
<?php
/**
* A template class dedicated to the admin area.
*
* @since 5.16.0
*
* @package TEC\Controller\Admin;
*/
namespace TEC\Tickets\Seating\Admin;
use Tribe__Tickets__Main as Tickets;
/**
* Class Template.
*
* @since 5.16.0
*
* @package TEC\Controller\Admin;
*/
class Template extends \Tribe__Template {
/**
* Template constructor.
*
* @since 5.16.0
*/
public function __construct() {
$this->set_template_origin( tribe( Tickets::instance() ) );
$this->set_template_folder( 'src/admin-views/seating' );
$this->set_template_folder_lookup( false );
$this->set_template_context_extract( true );
}
}