N°4720 - Remove old unreferenced methods or pages that are @deprecated (#747)

* N°4720 - Remove old unreferenced methods that are @deprecated

* N°4720-Config addson getter/setter removal

* small deprecation removal

* revert @deprecation 3.3 removal: ResizeImageToFit

* small deprecation removal

* revert deprecation 3.3 removal: Config/GSetAddons
This commit is contained in:
odain-cbd
2025-09-11 15:52:00 +02:00
committed by GitHub
parent d728be119c
commit 696e2c9565
27 changed files with 126 additions and 1135 deletions

View File

@@ -326,18 +326,6 @@ abstract class AttributeDefinition
// table, key field, name field
/**
* @return string
* @deprecated never used
*/
public function ListDBJoins()
{
DeprecatedCallsLog::NotifyDeprecatedPhpMethod();
return "";
// e.g: return array("Site", "infrid", "name");
}
public function GetFinalAttDef()
{
return $this;
@@ -927,21 +915,6 @@ abstract class AttributeDefinition
return null;
}
/**
* @return mixed|null
* @deprecated never used
*/
public function MakeValue()
{
DeprecatedCallsLog::NotifyDeprecatedPhpMethod();
$sComputeFunc = $this->Get("compute_func");
if (empty($sComputeFunc)) {
return null;
}
return call_user_func($sComputeFunc);
}
abstract public function GetDefaultValue(DBObject $oHostObject = null);
//