1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80:
<?php namespace Nethgui\Model;
class StaticFiles
{
private $code = array();
private $useList = array();
public function includeFile($fileName)
{
$ext = pathinfo($fileName, PATHINFO_EXTENSION);
if ( ! isset($this->code[$ext])) {
$this->code[$ext] = array();
}
$this->code[$ext][$fileName] = array(
'file' => $fileName,
'tstamp' => 0,
'data' => FALSE
);
return $this;
}
public function appendCode($code, $ext)
{
if ( ! isset($this->code[$ext])) {
$this->code[$ext] = array();
}
$this->code[$ext][] = array(
'file' => FALSE,
'tstamp' => 0,
'data' => $code
);
return $this;
}
public function getCode($ext)
{
return isset($this->code[$ext]) ? $this->code[$ext] : array();
}
public function getUseList($ext)
{
return array_filter($this->useList, function($uri) use ($ext) {
return $ext === pathinfo($uri, PATHINFO_EXTENSION);
});
}
public function useFile($fullPath)
{
$this->useList[] = $fullPath;
return $this;
}
}