winter/modules/cms/twig/FrameworkNode.php

57 lines
2.1 KiB
PHP
Raw Normal View History

2014-05-14 23:24:20 +10:00
<?php namespace Cms\Twig;
use System\Classes\CombineAssets;
use Twig\Node\Node as TwigNode;
use Twig\Compiler as TwigCompiler;
2014-05-14 23:24:20 +10:00
/**
* Represents a "framework" node
*
* @package october\cms
* @author Alexey Bobkov, Samuel Georges
*/
class FrameworkNode extends TwigNode
2014-05-14 23:24:20 +10:00
{
public function __construct($name, $lineno, $tag = 'framework')
{
parent::__construct([], ['name' => $name], $lineno, $tag);
}
/**
* Compiles the node to PHP.
*
* @param TwigCompiler $compiler A TwigCompiler instance
2014-05-14 23:24:20 +10:00
*/
public function compile(TwigCompiler $compiler)
2014-05-14 23:24:20 +10:00
{
$attrib = $this->getAttribute('name');
$includeExtras = strtolower(trim($attrib)) === 'extras';
2014-05-14 23:24:20 +10:00
$compiler
->addDebugInfo($this)
->write("\$_minify = ".CombineAssets::class."::instance()->useMinify;" . PHP_EOL);
2014-05-14 23:24:20 +10:00
if ($includeExtras) {
$compiler
->write("if (\$_minify) {" . PHP_EOL)
->indent()
->write("echo '<script src=\"' . Request::getBasePath() . '/modules/system/assets/js/framework.combined-min.js\"></script>'.PHP_EOL;" . PHP_EOL)
->outdent()
->write("}" . PHP_EOL)
->write("else {" . PHP_EOL)
->indent()
->write("echo '<script src=\"' . Request::getBasePath() . '/modules/system/assets/js/framework.js\"></script>'.PHP_EOL;" . PHP_EOL)
->write("echo '<script src=\"' . Request::getBasePath() . '/modules/system/assets/js/framework.extras.js\"></script>'.PHP_EOL;" . PHP_EOL)
->outdent()
->write("}" . PHP_EOL)
->write("echo '<link rel=\"stylesheet\" property=\"stylesheet\" href=\"' . Request::getBasePath() .'/modules/system/assets/css/framework.extras'.(\$_minify ? '-min' : '').'.css\">'.PHP_EOL;" . PHP_EOL)
2014-05-14 23:24:20 +10:00
;
}
else {
$compiler->write("echo '<script src=\"' . Request::getBasePath() . '/modules/system/assets/js/framework'.(\$_minify ? '-min' : '').'.js\"></script>'.PHP_EOL;" . PHP_EOL);
}
$compiler->write('unset($_minify);' . PHP_EOL);
2014-05-14 23:24:20 +10:00
}
2014-10-11 01:42:04 +02:00
}