コード例 #1
0
ファイル: Jade.php プロジェクト: relo-san/EverzetJadeBundle
 /**
  * Initialize parser. 
  * 
  * @param   LexerInterface  $lexer  jade lexer
  */
 public function __construct(Parser $parser, DumperInterface $dumper, $cache = null)
 {
     if (null !== $cache && !is_dir($cache)) {
         mkdir($cache, 0777, true);
     }
     parent::__construct($parser, $dumper, $cache);
 }
コード例 #2
0
ファイル: Jade.php プロジェクト: railsphp/framework
 /**
  * Returns $cacheKey as the cache key, so `computeCacheKey()` has
  * to be called before `cache()`.
  *
  * @return string
  */
 protected function getInputCacheKey($input)
 {
     if (is_file($input)) {
         return $this->cacheKey;
     } else {
         # If $input is not a file, let the parent throw the exception.
         return parent::getInputCacheKey($input);
     }
 }
コード例 #3
0
 /**
  * Compile the given Jade template contents.
  *
  * @param  string $value
  * @return string
  */
 public function compileString($value)
 {
     return $this->jade->render($value);
 }
コード例 #4
0
<?php

require './jade/autoload.php.dist';
use Everzet\Jade\Dumper\PHPDumper, Everzet\Jade\Visitor\AutotagsVisitor, Everzet\Jade\Filter\JavaScriptFilter, Everzet\Jade\Filter\CDATAFilter, Everzet\Jade\Filter\PHPFilter, Everzet\Jade\Filter\CSSFilter, Everzet\Jade\Parser, Everzet\Jade\Lexer\Lexer, Everzet\Jade\Jade;
$dumper = new PHPDumper();
$dumper->registerVisitor('tag', new AutotagsVisitor());
$dumper->registerFilter('javascript', new JavaScriptFilter());
$dumper->registerFilter('cdata', new CDATAFilter());
$dumper->registerFilter('php', new PHPFilter());
$dumper->registerFilter('style', new CSSFilter());
// Initialize parser & Jade
$parser = new Parser(new Lexer());
$jade = new Jade($parser, $dumper);
$template = __DIR__ . '/templates/index.jade';
$template_file = __DIR__ . '/templates/index.jade.php';
// Parse a template (both string & file containers)
echo "Parsing {$template} to  {$template_file}" . PHP_EOL;
file_put_contents($template_file, $jade->render($template));
$template = __DIR__ . '/templates/teacher.jade';
$template_file = __DIR__ . '/templates/teacher.jade.php';
echo "Parsing {$template} to  {$template_file}" . PHP_EOL;
file_put_contents($template_file, $jade->render($template));
$template = __DIR__ . '/templates/logout.jade';
$template_file = __DIR__ . '/templates/logout.jade.php';
echo "Parsing {$template} to  {$template_file}" . PHP_EOL;
file_put_contents($template_file, $jade->render($template));