blob: e0e7a2d6c796c70e51b53b3e0bcee9c604490709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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");
}
|