コード例 #1
0
ファイル: Iwi.php プロジェクト: devsnippet/city_site
 /**
  * @return mixed
  */
 public function cache()
 {
     $path = $this->buildPath();
     if ($path) {
         if ($this->createOrNone() || !file_exists($path)) {
             $this->save($path);
         }
     }
     $url = new \Phalcon\Mvc\Url();
     return $url->path($path);
 }