示例#1
0
文件: Apps.php 项目: saviobosco/lobby
 public static function clearCache()
 {
     self::$cache = array("valid_apps" => array());
 }
示例#2
0
文件: Apps.php 项目: LobbyOS/server
 /**
  * Return the app class object
  */
 public function run()
 {
     if ($this->app) {
         \Assets::js("app", "/includes/lib/lobby/js/app.js");
         self::$activeApp = $this;
         self::$activeAppInstance = $this->getInstance();
         /**
          * Return the App Object
          */
         return self::$activeAppInstance;
     }
 }