diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-01-21 22:18:42 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-01-21 22:18:42 +0100 |
commit | d2383338ded4fb980737062234584b29c284a4d5 (patch) | |
tree | c3a9488cec20a2693a8c0f319c99b4a84a83c9c4 /settings/js | |
parent | 30274ee33ed837088f662c1949a5b3a291cd6801 (diff) | |
download | nextcloud-server-d2383338ded4fb980737062234584b29c284a4d5.tar.gz nextcloud-server-d2383338ded4fb980737062234584b29c284a4d5.zip |
External JSON for the Apps
Diffstat (limited to 'settings/js')
-rw-r--r-- | settings/js/apps-custom.php | 24 |
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 |