Add loading of routes in OC_Router
This commit is contained in:
parent
b3848581bf
commit
9e80f0954d
|
@ -16,6 +16,19 @@ class OC_Router {
|
|||
protected $collections = array();
|
||||
protected $collection = null;
|
||||
|
||||
/**
|
||||
* loads the api routes
|
||||
*/
|
||||
public function loadRoutes(){
|
||||
// TODO cache
|
||||
foreach(OC_APP::getEnabledApps() as $app){
|
||||
$file = OC_App::getAppPath($app).'/appinfo/routes.php';
|
||||
if(file_exists($file)){
|
||||
require_once($file);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function useCollection($name) {
|
||||
if (!isset($this->collections[$name])) {
|
||||
$this->collections[$name] = new RouteCollection();
|
||||
|
|
Loading…
Reference in New Issue