* some changes

* moved some admin html code from php to twig templates (.html files)
* minimum PHP version required by installer is now 5.1.2, cause of spl_autoload_register functon.
* depracated Twig to version 1.20.0 cause of Autoloader
* removed unused admin stylish template
This commit is contained in:
slawkens
2017-08-28 10:02:49 +02:00
parent 603c2175e3
commit 15961f0c17
418 changed files with 15624 additions and 4322 deletions

View File

@@ -1,11 +0,0 @@
<?php
namespace Twig\Node\Expression\Unary;
class_exists('Twig_Node_Expression_Unary');
if (\false) {
class AbstractUnary extends \Twig_Node_Expression_Unary
{
}
}

View File

@@ -0,0 +1,18 @@
<?php
/*
* This file is part of Twig.
*
* (c) 2009 Fabien Potencier
* (c) 2009 Armin Ronacher
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
class Twig_Node_Expression_Unary_Neg extends Twig_Node_Expression_Unary
{
public function operator(Twig_Compiler $compiler)
{
$compiler->raw('-');
}
}

View File

@@ -1,11 +0,0 @@
<?php
namespace Twig\Node\Expression\Unary;
class_exists('Twig_Node_Expression_Unary_Neg');
if (\false) {
class NegUnary extends \Twig_Node_Expression_Unary_Neg
{
}
}

View File

@@ -0,0 +1,18 @@
<?php
/*
* This file is part of Twig.
*
* (c) 2009 Fabien Potencier
* (c) 2009 Armin Ronacher
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
class Twig_Node_Expression_Unary_Not extends Twig_Node_Expression_Unary
{
public function operator(Twig_Compiler $compiler)
{
$compiler->raw('!');
}
}

View File

@@ -1,11 +0,0 @@
<?php
namespace Twig\Node\Expression\Unary;
class_exists('Twig_Node_Expression_Unary_Not');
if (\false) {
class NotUnary extends \Twig_Node_Expression_Unary_Not
{
}
}

View File

@@ -0,0 +1,18 @@
<?php
/*
* This file is part of Twig.
*
* (c) 2009 Fabien Potencier
* (c) 2009 Armin Ronacher
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
class Twig_Node_Expression_Unary_Pos extends Twig_Node_Expression_Unary
{
public function operator(Twig_Compiler $compiler)
{
$compiler->raw('+');
}
}

View File

@@ -1,11 +0,0 @@
<?php
namespace Twig\Node\Expression\Unary;
class_exists('Twig_Node_Expression_Unary_Pos');
if (\false) {
class PosUnary extends \Twig_Node_Expression_Unary_Pos
{
}
}