コード例 #1
0
ファイル: Tpl.php プロジェクト: AlekseyArh/cmf
 /**
  * Tpl constructor.
  */
 function __construct(Cache $Cache, Translate $Translate)
 {
     $this->Cache = $Cache;
     $this->Translate = $Translate;
     $this->Cache->setConfig($this->config);
     self::$hash = $this->Cache->get('arh.tpl.hash');
 }
コード例 #2
0
ファイル: Tpl.php プロジェクト: arhone/cmf
 function __construct(Cache $Cache, Translate $Translate, array $config = [])
 {
     $this->Cache = $Cache;
     $this->Translate = $Translate;
     $this->mergeConfig($config);
     self::$hash = $this->Cache->get('arh.tpl.hash');
 }