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