bootstrap.php 417 B

12345678910111213141516
  1. <?php
  2. /**
  3. * This file is part of the Smarty package.
  4. *
  5. * (c) Sebastian Bergmann <sebastian@phpunit.de>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * Load and register Smarty Autoloader
  12. */
  13. if (!class_exists('Smarty_Autoloader')) {
  14. include dirname(__FILE__) . '/Autoloader.php';
  15. }
  16. Smarty_Autoloader::register(true);