* SPDX-License-Identifier: AGPL-3.0-only ************************************/ global $adb; global $currentModule, $current_user; $reqtype = $_REQUEST['type']; if ($reqtype == 'picklist') { $queryGenerator = QueryGenerator::getInstance($currentModule, $current_user); $queryGenerator->initForDefaultCustomView(); $list_query = $queryGenerator->getQuery(); $list_query .= " ORDER BY chartname"; // TODO: limit ?? $list_result = $adb->query($list_query); $outstr = ''; echo $outstr; } ?>