summaryrefslogtreecommitdiffstats
path: root/settings/js/apps-custom.php
diff options
context:
space:
mode:
Diffstat (limited to 'settings/js/apps-custom.php')
-rw-r--r--settings/js/apps-custom.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/settings/js/apps-custom.php b/settings/js/apps-custom.php
new file mode 100644
index 00000000000..e0e7a2d6c79
--- /dev/null
+++ b/settings/js/apps-custom.php
@@ -0,0 +1,24 @@
+<?php
+/**
+ * Copyright (c) 2013 Lukas Reschke <lukas@statuscode.ch>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+// Check if admin user
+OC_Util::checkAdminUser();
+
+// Set the content type to JSON
+header('Content-type: application/json');
+
+// Disallow caching
+header("Cache-Control: no-cache, must-revalidate");
+header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
+
+$combinedApps = OC_App::listAllApps();
+
+foreach($combinedApps as $app) {
+ echo("appData_".$app['id']."=".json_encode($app));
+ echo("\n");
+} \ No newline at end of file