summaryrefslogtreecommitdiffstats
path: root/tests/classloader.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-02-02 00:20:26 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-02-02 00:20:41 +0100
commitac423f6ca08a86d66544c50a0277e3ff00acb467 (patch)
tree9c83c6ebc3594a031ef2eb4618f601b80253408d /tests/classloader.php
parent45df6bcd1339e3f6b949b257319bd85cc676fff0 (diff)
added foldercontroller + test
Diffstat (limited to 'tests/classloader.php')
-rw-r--r--tests/classloader.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/classloader.php b/tests/classloader.php
new file mode 100644
index 000000000..310dbea07
--- /dev/null
+++ b/tests/classloader.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * ownCloud - Advanced App Template
+ *
+ * @author Bernhard Posselt
+ * @copyright 2012 Bernhard Posselt nukeawhale@gmail.com
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+// to execute without owncloud, we need to create our own classloader
+spl_autoload_register(function ($className){
+ if (strpos($className, 'OCA\\') === 0) {
+
+ $path = strtolower(str_replace('\\', '/', substr($className, 3)) . '.php');
+ $relPath = __DIR__ . '/../..' . $path;
+
+ if(file_exists($relPath)){
+ require_once $relPath;
+ }
+ }
+}); \ No newline at end of file