當前位置: 首頁>>代碼示例>>PHP>>正文


PHP jFile::shortestPath方法代碼示例

本文整理匯總了PHP中jFile::shortestPath方法的典型用法代碼示例。如果您正苦於以下問題:PHP jFile::shortestPath方法的具體用法?PHP jFile::shortestPath怎麽用?PHP jFile::shortestPath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在jFile的用法示例。


在下文中一共展示了jFile::shortestPath方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: registerModulesDir

 protected function registerModulesDir($repository, $repositoryPath)
 {
     $allDirs = \Jelix\Core\App::getDeclaredModulesDir();
     $path = realpath($repositoryPath);
     if ($path == '') {
         throw new Exception('The modules dir ' . $repository . ' is not a valid path');
     }
     $path = jFile::shortestPath(\Jelix\Core\App::appPath(), $path);
     $found = false;
     foreach ($allDirs as $dir) {
         $dir = jFile::shortestPath(\Jelix\Core\App::appPath(), $dir);
         if ($dir == $path) {
             $found = true;
             break;
         }
     }
     // the modules dir is not known, we should register it.
     if (!$found) {
         $this->createDir($repositoryPath);
         if (file_exists(\Jelix\Core\App::appPath('composer.json')) && file_exists(\Jelix\Core\App::appPath('vendor'))) {
             // we update composer.json
             $json = json_decode(file_get_contents(\Jelix\Core\App::appPath('composer.json')), true);
             if (!$json) {
                 throw new Exception('composer.json has bad json format');
             }
             if (!isset($json['extra'])) {
                 $json['extra'] = array('jelix' => array('modules-dir' => array()));
             } else {
                 if (!isset($json['extra']['jelix'])) {
                     $json['extra']['jelix'] = array('modules-dir' => array());
                 } else {
                     if (!isset($json['extra']['jelix']['modules-dir'])) {
                         $json['extra']['jelix']['modules-dir'] = array();
                     }
                 }
             }
             $json['extra']['jelix']['modules-dir'][] = $path;
             file_put_contents(\Jelix\Core\App::appPath('composer.json'), json_encode($json, JSON_PRETTY_PRINT));
             if ($this->verbose()) {
                 echo "The given modules dir has been added into your composer.json\n";
             }
             echo "You should launch 'composer update' to have your module repository recognized\n";
         } else {
             if (file_exists(\Jelix\Core\App::appPath('application.init.php'))) {
                 // we modify the application.init.php directly
                 $content = file_get_contents(\Jelix\Core\App::appPath('application.init.php'));
                 $content .= "\n\\Jelix\\Core\\App::declareModulesDir(__DIR__.'/" . $path . "');\n";
                 file_put_contents(\Jelix\Core\App::appPath('application.init.php'), $content);
                 if ($this->verbose()) {
                     echo "The given modules dir has been added into your application.init.php\n";
                 }
             }
         }
     }
 }
開發者ID:rodacom,項目名稱:jelix,代碼行數:55,代碼來源:JelixScriptCommand.class.php


注:本文中的jFile::shortestPath方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。