当前位置: 首页>>代码示例>>PHP>>正文


PHP OC_App::isAppLoaded方法代码示例

本文整理汇总了PHP中OC_App::isAppLoaded方法的典型用法代码示例。如果您正苦于以下问题:PHP OC_App::isAppLoaded方法的具体用法?PHP OC_App::isAppLoaded怎么用?PHP OC_App::isAppLoaded使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在OC_App的用法示例。


在下文中一共展示了OC_App::isAppLoaded方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: loadRoutes

 /**
  * Loads the routes
  *
  * @param null|string $app
  */
 public function loadRoutes($app = null)
 {
     if (is_string($app)) {
         $app = \OC_App::cleanAppId($app);
     }
     $requestedApp = $app;
     if ($this->loaded) {
         return;
     }
     if (is_null($app)) {
         $this->loaded = true;
         $routingFiles = $this->getRoutingFiles();
     } else {
         if (isset($this->loadedApps[$app])) {
             return;
         }
         $file = \OC_App::getAppPath($app) . '/appinfo/routes.php';
         if ($file !== false && file_exists($file)) {
             $routingFiles = [$app => $file];
         } else {
             $routingFiles = [];
         }
     }
     \OC::$server->getEventLogger()->start('loadroutes' . $requestedApp, 'Loading Routes');
     foreach ($routingFiles as $app => $file) {
         if (!isset($this->loadedApps[$app])) {
             if (!\OC_App::isAppLoaded($app)) {
                 // app MUST be loaded before app routes
                 // try again next time loadRoutes() is called
                 $this->loaded = false;
                 continue;
             }
             $this->loadedApps[$app] = true;
             $this->useCollection($app);
             $this->requireRouteFile($file, $app);
             $collection = $this->getCollection($app);
             $collection->addPrefix('/apps/' . $app);
             $this->root->addCollection($collection);
         }
     }
     if (!isset($this->loadedApps['core'])) {
         $this->loadedApps['core'] = true;
         $this->useCollection('root');
         require_once __DIR__ . '/../../../settings/routes.php';
         require_once __DIR__ . '/../../../core/routes.php';
     }
     if ($this->loaded) {
         // include ocs routes, must be loaded last for /ocs prefix
         require_once __DIR__ . '/../../../ocs/routes.php';
         $collection = $this->getCollection('ocs');
         $collection->addPrefix('/ocs');
         $this->root->addCollection($collection);
     }
     \OC::$server->getEventLogger()->end('loadroutes' . $requestedApp);
 }
开发者ID:stweil,项目名称:owncloud-core,代码行数:60,代码来源:Router.php


注:本文中的OC_App::isAppLoaded方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。