コード例 #1
0
ファイル: plugin.class.php プロジェクト: idreamsoft/iCMS5.0
 function path($name, $file = '')
 {
     self::$name = $name;
     $path = iCMS_PLUGINS_PATH . '/' . $name . '/';
     $file && ($filepath = $path . $file);
     if (file_exists($filepath)) {
         return $filepath;
     }
     return empty($file) ? $path : false;
 }