Admin_Views::__construct()
Template constructor.
Sets the correct paths for templates for event status.
Source
File: src/Tickets/Flexible_Tickets/Templates/Admin_Views.php
public function __construct() {
$this->set_template_origin( ET::class );
$this->set_template_folder( 'src/admin-views/flexible-tickets' );
// We specifically don't want to look up template files here.
$this->set_template_folder_lookup( false );
// Configures this templating class extract variables.
$this->set_template_context_extract( true );
}
Changelog
| Version | Description |
|---|---|
| 5.8.0 | Introduced. |