From bb0e797cee8a4726cc680fd741ec495c30ba246f Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Tue, 27 Nov 2018 15:48:47 +0100 Subject: [PATCH] Remove Config deprecated methods in v2.7 --- core/config.class.inc.php | 77 --------------------------------------- 1 file changed, 77 deletions(-) diff --git a/core/config.class.inc.php b/core/config.class.inc.php index 154a67446..841309962 100644 --- a/core/config.class.inc.php +++ b/core/config.class.inc.php @@ -1524,83 +1524,6 @@ class Config $this->m_aAddons = $aAddons; } - /** - * @return string - * - * @deprecated 2.5 will be removed in 2.6 - * @see Config::Get() as a replacement - */ - public function GetDBHost() - { - return $this->Get('db_host'); - } - - /** - * @return string - * - * @deprecated 2.5 will be removed in 2.6 - * @see Config::Get() as a replacement - */ - public function GetDBName() - { - return $this->Get('db_name'); - } - - /** - * @return string - * - * @deprecated 2.5 will be removed in 2.6 - * @see Config::Get() as a replacement - */ - public function GetDBSubname() - { - return $this->Get('db_subname'); - } - - /** - * @return string - * - * @deprecated 2.5 will be removed in 2.6 #1001 utf8mb4 switch - * @see Config::DEFAULT_CHARACTER_SET - */ - public function GetDBCharacterSet() - { - return DEFAULT_CHARACTER_SET; - } - - /** - * @return string - * - * @deprecated 2.5 will be removed in 2.6 #1001 utf8mb4 switch - * @see Config::DEFAULT_COLLATION - */ - public function GetDBCollation() - { - return DEFAULT_COLLATION; - } - - /** - * @return string - * - * @deprecated 2.5 will be removed in 2.6 - * @see Config::Get() as a replacement - */ - public function GetDBUser() - { - return $this->Get('db_user'); - } - - /** - * @return string - * - * @deprecated 2.5 will be removed in 2.6 - * @see Config::Get() as a replacement - */ - public function GetDBPwd() - { - return $this->Get('db_pwd'); - } - public function GetLogGlobal() { return $this->m_bLogGlobal;