winter/modules/cms/twig/FrameworkNode.php

45 lines
1.3 KiB
PHP
Raw Normal View History

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