summaryrefslogtreecommitdiffstats
path: root/core/routes.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-08-12 16:52:36 +0200
committerBart Visscher <bartv@thisnet.nl>2012-08-12 16:52:36 +0200
commitdb4111f6d50d5bf2195d4a082ffc9dcea1d911ce (patch)
tree60395e2413ce28434b3d27461f11ed4bd70f0a46 /core/routes.php
parent8c024947440e2f15a9effe5fe6d91e60e8571a07 (diff)
downloadnextcloud-server-db4111f6d50d5bf2195d4a082ffc9dcea1d911ce.tar.gz
nextcloud-server-db4111f6d50d5bf2195d4a082ffc9dcea1d911ce.zip
Routing: Add some core routes
Diffstat (limited to 'core/routes.php')
-rw-r--r--core/routes.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/core/routes.php b/core/routes.php
new file mode 100644
index 00000000000..04b42d20598
--- /dev/null
+++ b/core/routes.php
@@ -0,0 +1,19 @@
+<?php
+/**
+ * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+$this->create('app_css', '/apps/{app}/{file}')
+ ->requirements(array('file' => '.*.css'))
+ ->action('OC', 'loadCSSFile');
+$this->create('app_index_script', '/apps/{app}/')
+ ->defaults(array('file' => 'index.php'))
+ //->requirements(array('file' => '.*.php'))
+ ->action('OC', 'loadAppScriptFile');
+$this->create('app_script', '/apps/{app}/{file}')
+ ->defaults(array('file' => 'index.php'))
+ ->requirements(array('file' => '.*.php'))
+ ->action('OC', 'loadAppScriptFile');