Welcome to mirror list, hosted at ThFree Co, Russian Federation.

navigationdetect.php « ajax « settings - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71d0e4c8c04233dd869fe7fea8e74a03eafe4b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

OC_Util::checkAdminUser();
OCP\JSON::callCheck();

$app = (string)$_GET['app'];
$app = OC_App::cleanAppId($app);

$navigation = OC_App::getAppNavigationEntries($app);

$navIds = array();
foreach ($navigation as $nav) {
	$navIds[] = $nav['id'];
}

OCP\JSON::success(array('nav_ids' => array_values($navIds), 'nav_entries' => $navigation));