A super easy PHP Framework for web development!
https://github.com/exacti/phacil-framework
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
<?php
|
|
namespace {
|
|
if (version_compare(phpversion(), '7.2.5', '>') == false) {
|
|
define('TwigFolderLoad', 'Twig1x');
|
|
define('TwigLoaderFilesystem', 'Twig_Loader_Filesystem');
|
|
define('TwigEnvironment', 'Twig_Environment');
|
|
define('TwigSimpleFilter', 'Twig_SimpleFilter');
|
|
define('TwigExtensionDebug', 'Twig_Extension_Debug');
|
|
|
|
} else {
|
|
define('TwigLoaderFilesystem', '\Twig\Loader\FilesystemLoader');
|
|
define('TwigEnvironment', '\Twig\Environment');
|
|
define('TwigSimpleFilter', '\Twig\TwigFilter');
|
|
define('TwigExtensionDebug', '\Twig\Extension\DebugExtension');
|
|
|
|
|
|
}
|
|
|
|
if(defined('TwigFolderLoad')){
|
|
include_once TwigFolderLoad."/vendor/autoload.php";
|
|
}
|
|
|
|
|
|
if(defined('TwigFolderLoad') && 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";
|
|
}
|
|
} |