true, 'LOAD_DATATABLE' => true, 'HTML_FILE' => 'admin/manualCheck.html', 'JS' => 'admin_manual_check.js', ]; $currentOperator = $this->f3->get('CURRENT_USER'); $operatorId = $currentOperator->id; if ($this->isPostRequest()) { $params = $this->f3->get('POST'); $params['operator'] = $operatorId; $operationResponse = $dataController->proceedPostRequest($params); $pageParams = array_merge($pageParams, $operationResponse); } $pageParams['HISTORY'] = $dataController->getSearchHistory($operatorId); return parent::applyPageParams($pageParams); } public static function stylizeKey(string $key): string { $f3 = \Base::instance(); $overwrites = $f3->get('AdminManualCheck_key_overwrites'); if (array_key_exists($key, $overwrites)) { return $overwrites[$key]; } if ($key === 'profiles' || $key === 'data_breach') { $key = sprintf('no_%s', $key); } return ucfirst(str_replace('_', ' ', $key)); } }