diff options
Diffstat (limited to 'core/ajax/navigationdetect.php')
-rw-r--r-- | core/ajax/navigationdetect.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/core/ajax/navigationdetect.php b/core/ajax/navigationdetect.php new file mode 100644 index 00000000000..c7d0bd38dbc --- /dev/null +++ b/core/ajax/navigationdetect.php @@ -0,0 +1,22 @@ +<?php + +$RUNTIME_NOAPPS = true; + +require_once '../../lib/base.php'; + +OC_Util::checkAdminUser(); +OCP\JSON::callCheck(); + +$app = $_GET['app']; + +//load the one app and see what it adds to the navigation +OC_App::loadApp($app); + +$navigation = OC_App::getNavigation(); + +$navIds = array(); +foreach ($navigation as $nav) { + $navIds[] = $nav['id']; +} + +OCP\JSON::success(array('nav_ids' => array_values($navIds), 'nav_entries' => $navigation)); |