privileges = $privileges; $this->dbi = $dbi; } /** * @param array $params Request parameters */ public function __invoke(array $params): string { global $cfg, $text_dir; $scriptName = Util::getScriptNameForOption($cfg['DefaultTabDatabase'], 'database'); $privileges = []; if ($this->dbi->isSuperUser()) { $privileges = $this->privileges->getAllPrivileges($params['checkprivsdb']); } return $this->template->render('database/privileges/index', [ 'is_superuser' => $this->dbi->isSuperUser(), 'db' => $params['checkprivsdb'], 'database_url' => $scriptName, 'text_dir' => $text_dir, 'is_createuser' => $this->dbi->isCreateUser(), 'is_grantuser' => $this->dbi->isGrantUser(), 'privileges' => $privileges, ]); } }