dev-meghraj
11 years ago
4 changed files with 166 additions and 118 deletions
@ -1,36 +1,76 @@ |
|||||||
<?php |
<?php |
||||||
|
/** |
||||||
|
* Simple file system wrapper for twig to process twig files |
||||||
|
* |
||||||
|
* @link http://www.yiiframework.com/ |
||||||
|
* @copyright Copyright (c) 2008 Yii Software LLC |
||||||
|
* @license http://www.yiiframework.com/license/ |
||||||
|
*/ |
||||||
|
|
||||||
namespace yii\twig; |
namespace yii\twig; |
||||||
|
|
||||||
|
|
||||||
/** |
/** |
||||||
* Twig view file loader class |
* Twig view file loader class. |
||||||
* |
* |
||||||
* @author dev-mraj <dev.meghraj@gmail.com> |
* @author dev-mraj <dev.meghraj@gmail.com> |
||||||
* @version 1.0.0 |
* @version 1.0.0 |
||||||
*/ |
*/ |
||||||
class TwigSimpleFileLoader implements \Twig_LoaderInterface { |
class TwigSimpleFileLoader implements \Twig_LoaderInterface { |
||||||
|
|
||||||
/** |
/** |
||||||
* Path to directory where all file exists |
* @var string Path to directory |
||||||
* @var string |
*/ |
||||||
*/ |
private $_dir; |
||||||
private $dir; |
|
||||||
|
/* |
||||||
public function __construct($dir){ |
* @param @dir string path to directory |
||||||
$this->dir=$dir; |
*/ |
||||||
} |
public function __construct($dir) |
||||||
|
{ |
||||||
public function isFresh($name, $time){ |
$this->_dir=$dir; |
||||||
return filemtime($this->getFilePath($name))<=$time; |
} |
||||||
} |
|
||||||
public function getSource($name){ |
/** |
||||||
return file_get_contents($this->getFilePath($name)); |
* Compare a file's freshness with previously stored timestamp |
||||||
} |
* |
||||||
public function getCacheKey($name){ |
* @param $name string file name to check |
||||||
return $this->getFilePath($name); |
* @param $time int timestamp to compare with |
||||||
} |
* @return bool true if file is still fresh and not changes, false otherwise |
||||||
|
*/ |
||||||
protected function getFilePath($name){ |
public function isFresh($name, $time) |
||||||
return $this->dir.'/'.$name; |
{ |
||||||
} |
return filemtime($this->getFilePath($name))<=$time; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* get the source of given file name |
||||||
|
* |
||||||
|
* @param $name string file name |
||||||
|
* @return string contents of given file name |
||||||
|
*/ |
||||||
|
public function getSource($name) |
||||||
|
{ |
||||||
|
return file_get_contents($this->getFilePath($name)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* get a unique key that can represent this file uniquely among other files. |
||||||
|
* @param $name |
||||||
|
* @return string |
||||||
|
*/ |
||||||
|
public function getCacheKey($name) |
||||||
|
{ |
||||||
|
return $this->getFilePath($name); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* internally used to get absolute path of given file name |
||||||
|
* @param $name string file name |
||||||
|
* @return string absolute path of file |
||||||
|
*/ |
||||||
|
protected function getFilePath($name){ |
||||||
|
return $this->_dir.'/'.$name; |
||||||
|
} |
||||||
|
|
||||||
} |
} |
Loading…
Reference in new issue