2012-05-07 17:39:17 +04:00
|
|
|
<?php
|
2012-10-23 10:01:09 +04:00
|
|
|
$RUNTIME_NOAPPS = true;
|
2012-09-04 13:10:26 +04:00
|
|
|
require_once 'lib/base.php';
|
2012-08-28 19:13:02 +04:00
|
|
|
if (!isset($_GET['service'])) {
|
|
|
|
header('HTTP/1.0 404 Not Found');
|
|
|
|
exit;
|
|
|
|
}
|
2012-05-07 17:39:17 +04:00
|
|
|
$file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service']));
|
2012-09-04 13:10:26 +04:00
|
|
|
if(is_null($file)) {
|
2012-05-07 17:39:17 +04:00
|
|
|
header('HTTP/1.0 404 Not Found');
|
|
|
|
exit;
|
|
|
|
}
|
2012-05-14 02:28:22 +04:00
|
|
|
|
2012-09-04 13:10:26 +04:00
|
|
|
$parts=explode('/', $file, 2);
|
2012-06-05 00:37:00 +04:00
|
|
|
$app=$parts[0];
|
2012-07-14 00:44:35 +04:00
|
|
|
|
2012-06-27 00:24:16 +04:00
|
|
|
OC_Util::checkAppEnabled($app);
|
2012-05-14 02:28:22 +04:00
|
|
|
OC_App::loadApp($app);
|
|
|
|
|
2012-09-04 13:10:26 +04:00
|
|
|
require_once OC_App::getAppPath($app) .'/'. $parts[1];
|