Add: getTypingAppList, getTypingActiveAppList

This commit is contained in:
2019-08-08 11:07:31 +09:00
parent 46711fa21e
commit 467eef9763
3 changed files with 112 additions and 29 deletions
+6 -2
View File
@@ -26,13 +26,17 @@ include "./../db/db_method_container.php";
include "./../db/menu_collection.php";
$menuCollection = new MenuCollection($dbConnector->getMysqli());
$appData = $menuCollection->getAppData($maestroID, $playerID, $appGroup, $language);
$appList = $menuCollection->getAppList($maestroID, $playerID, $appGroup, $language);
$activeAppList = $menuCollection->getActiveAppList($maestroID, $playerID, $appGroup, $language);
$highestRecordList = $menuCollection->getHighestRecordList($maestroID, $playerID, $appGroup, $language);
$jsonBuilder->setData("appGroupName", $menuCollection->getAppGroupName($appGroup));
$jsonBuilder->setData("languageName", $menuCollection->getLanguageName($language));
$jsonBuilder->setData("appGroup", $appGroup);
$jsonBuilder->setData("appData", $appData);
$jsonBuilder->setData("appList", $appList);
$jsonBuilder->setData("activeAppList", $activeAppList);
$jsonBuilder->setData("highestRecordList", $highestRecordList);
$jsonBuilder->sendResultSuccess();