fusionpbx/resources/templates/engine/smarty/bootstrap.php

17 lines
407 B
PHP
Raw Permalink Normal View History

2018-11-07 08:18:14 +01:00
<?php
/**
* This file is part of the Smarty package.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Load and register Smarty Autoloader
*/
if (!class_exists('Smarty_Autoloader')) {
2023-05-08 17:50:42 +02:00
include __DIR__ . '/Autoloader.php';
2018-11-07 08:18:14 +01:00
}
Smarty_Autoloader::register(true);