mount('/', new Root()); $app->mount('/dashboard', new Dashboard()); $app->mount('/collection', new Collection()); $app->mount('/databox', new Databox()); $app->mount('/databoxes', new Databoxes()); $app->mount('/setup', new Setup()); $app->mount('/sphinx', new Sphinx()); $app->mount('/connected-users', new ConnectedUsers()); $app->mount('/task-manager', new TaskManager()); $app->mount('/publications', new Publications()); $app->mount('/users', new Users()); $app->mount('/fields', new Fields()); $app->mount('/subdefs', new Subdefs()); $app->mount('/description', new Description()); $app->mount('/tests/connection', new ConnectionTest()); $app->mount('/tests/pathurl', new PathFileTest()); return $app; } );