예제 #1
0
파일: cache.php 프로젝트: MBerguer/wp-demo
 public static function init()
 {
     static $inited;
     if (!$inited) {
         self::$accessiblePath = N2Filesystem::getWebCachePath();
         self::$notAccessiblePath = N2Filesystem::getNotWebCachePath();
         $inited = true;
     }
 }