|
|
|
<?php
|
|
|
|
namespace {
|
|
|
|
if (version_compare(phpversion(), '7.0.0', '>') == false) {
|
|
|
|
define('TwigFolderLoad', 'Twig1x');
|
|
|
|
define('TwigLoaderFilesystem', 'Twig_Loader_Filesystem');
|
|
|
|
define('TwigEnvironment', 'Twig_Environment');
|
|
|
|
define('TwigSimpleFilter', 'Twig_SimpleFilter');
|
|
|
|
define('TwigExtensionDebug', 'Twig_Extension_Debug');
|
PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
5 years ago
|
|
|
|
|
|
|
} else {
|
|
|
|
define('TwigLoaderFilesystem', '\Twig\Loader\FilesystemLoader');
|
|
|
|
define('TwigEnvironment', '\Twig\Environment');
|
|
|
|
define('TwigSimpleFilter', '\Twig\TwigFilter');
|
|
|
|
define('TwigExtensionDebug', '\Twig\Extension\DebugExtension');
|
|
|
|
|
|
|
|
if (version_compare(phpversion(), '7.2.0', '>') == false) {
|
|
|
|
define('TwigFolderLoad', 'Twig2x');
|
|
|
|
} else {
|
|
|
|
define('TwigFolderLoad', 'Twig3x');
|
|
|
|
}
|
|
|
|
}
|
PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
5 years ago
|
|
|
|
|
|
|
include_once TwigFolderLoad."/autoload.php";
|
PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
5 years ago
|
|
|
|
|
|
|
|
|
|
|
if(TwigFolderLoad == 'Twig1x') {
|
|
|
|
if (file_exists(__DIR__ . "/Extension/ExacTITranslate1x.php")) include __DIR__ . "/Extension/ExacTITranslate1x.php";
|
|
|
|
} else {
|
|
|
|
if (file_exists(__DIR__ . "/Extension/ExacTITranslate.php")) include __DIR__ . "/Extension/ExacTITranslate.php";
|
|
|
|
}
|
PHP SESSION Prefix and IP check, engine constants and user_constants as a function for better memory usage, add SQLite 3 driver, new loader for aditional database method, new REST HTPP method check, updated template engines: Mustache 2.13, Smarty 3.1.34, Twig 1.42.5, Twig 2.12.5, add Twig 3 support to PHP 7.2+, define Dwoo template as deprecated, Caches and captcha bugfix in PHP 5.4.x
5 years ago
|
|
|
}
|