mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 19:20:35 -04:00
This enforces proper types on POST and GET arguments where I considered it sensible. I didn't update some as I don't know what kind of values they would support 🙈 Fixes https://github.com/owncloud/core/issues/14196 for core
16 lines
346 B
PHP
16 lines
346 B
PHP
<?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));
|