From 480c52342818c9e634a378a44c9363b33b9e05f9 Mon Sep 17 00:00:00 2001 From: mjansen Date: Fri, 23 Jun 2023 12:59:15 +0200 Subject: [PATCH] Startup: Remove `Client List` related code See: https://mantis.ilias.de/view.php?id=33816 --- Services/Init/classes/class.ilStartUpGUI.php | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/Services/Init/classes/class.ilStartUpGUI.php b/Services/Init/classes/class.ilStartUpGUI.php index fadaa3a8b233..dd310e30c313 100755 --- a/Services/Init/classes/class.ilStartUpGUI.php +++ b/Services/Init/classes/class.ilStartUpGUI.php @@ -1004,13 +1004,6 @@ private function showRegistrationLinks(string $page_editor_html): string $rtpl->parseCurrentBlock(); } - if ($this->dic['ilIliasIniFile']->readVariable('clients', 'list')) { - $rtpl->setCurrentBlock('client_list'); - $rtpl->setVariable('TXT_CLIENT_LIST', $this->lng->txt('to_client_list')); - $rtpl->setVariable('CMD_CLIENT_LIST', $this->ctrl->getLinkTarget($this, 'showClientList')); - $rtpl->parseCurrentBlock(); - } - return $this->substituteLoginPageElements( $tpl, $page_editor_html, @@ -1271,18 +1264,6 @@ private function showLogout(): void $tpl->parseCurrentBlock(); } - if ($this->dic['ilIliasIniFile']->readVariable('clients', 'list')) { - $tpl->setCurrentBlock('client_list'); - $tpl->setVariable('TXT_CLIENT_LIST', $this->lng->txt('to_client_list')); - $this->ctrl->setParameter($this, 'client_id', $client_id); - $tpl->setVariable( - 'CMD_CLIENT_LIST', - $this->ctrl->getLinkTarget($this, 'showClientList') - ); - $tpl->parseCurrentBlock(); - $this->ctrl->setParameter($this, 'client_id', ''); - } - $tosWithdrawalGui = new ilTermsOfServiceWithdrawalGUIHelper($this->user); $tpl->setVariable('TXT_PAGEHEADLINE', $this->lng->txt('logout'));