2016-11-08 17:48:25 +01:00
|
|
|
<?php
|
2018-08-31 16:45:09 +02:00
|
|
|
/**
|
2016-11-08 17:48:25 +01:00
|
|
|
* 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.
|
|
|
|
*/
|
2018-08-31 16:45:09 +02:00
|
|
|
/**
|
2016-11-08 17:48:25 +01:00
|
|
|
* Load and register Smarty Autoloader
|
|
|
|
*/
|
|
|
|
if (!class_exists('Smarty_Autoloader')) {
|
2022-09-27 13:03:34 +03:00
|
|
|
include __DIR__ . '/Autoloader.php';
|
2016-11-08 17:48:25 +01:00
|
|
|
}
|
2017-08-09 12:22:37 +02:00
|
|
|
Smarty_Autoloader::register(true);
|