For incremental refactor + some credits

This commit is contained in:
Catalin Novgorodschi
2026-05-12 13:39:10 +03:00
parent c8d9fae4b4
commit a004f5352b
5 changed files with 56 additions and 36 deletions
+9 -10
View File
@@ -4,16 +4,15 @@ use App\Entity\User;
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Project: TravianZ ##
## Version: 22.06.2015 ##
## Filename Account.php ##
## Developed by: Mr.php , Advocaite , brainiacX , yi12345 , Shadow , ronix ##
## Fixed by: Shadow - STARVATION , HERO FIXED COMPL. ##
## Fixed by: InCube - double troops ##
## License: TravianZ Project ##
## Copyright: TravianZ (c) 2010-2015. All rights reserved. ##
## URLs: http://travian.shadowss.ro ##
## Source code: https://github.com/Shadowss/TravianZ ##
## Project: TravianZ ##
## Version: 18.05.2026 ##
## Filename: Account.php ##
## Developed by: Dzoki ##
## Refactored by: Shadow ##
## License: TravianZ Project ##
## Copyright: TravianZ (c) 2010-2026. All rights reserved. ##
## URLs: https://travianz.org ##
## https://github.com/Shadowss/TravianZ ##
## ##
#################################################################################
+2 -2
View File
@@ -10,8 +10,8 @@
## Refactor by: Shadow ##
## License: TravianZ Project ##
## Copyright: TravianZ (c) 2010-2026. All rights reserved. ##
## URLs: http://travian.shadowss.ro ##
## Source code: https://github.com/Shadowss/TravianZ ##
## URLs: https://travianz.org ##
## https://github.com/Shadowss/TravianZ ##
## ##
#################################################################################
+2 -2
View File
@@ -14,8 +14,8 @@
## License: TravianZ Project ##
## Copyright: TravianZ (c) 2010-2026. All rights reserved. ##
## ##
## URLs: http://travian.shadowss.ro ##
## https://github.com/Shadowss/TravianZ ##
## URLs: https://travianz.org ##
## https://github.com/Shadowss/TravianZ ##
## ##
#################################################################################
+2 -2
View File
@@ -12,8 +12,8 @@
## License: TravianZ Project ##
## Copyright: TravianZ (c) 2010-2026. All rights reserved. ##
## ##
## URLs: http://travian.shadowss.ro ##
## https://github.com/Shadowss/TravianZ ##
## URLs: https://travianz.org ##
## https://github.com/Shadowss/TravianZ ##
## ##
#################################################################################
+41 -20
View File
@@ -5,7 +5,14 @@
## --------------------------------------------------------------------------- ##
## Filename Form.php ##
## License: TravianZ Project ##
## Copyright: TravianZ (c) 2010-2025. All rights reserved. ##
## Copyright: TravianZ (c) 2010-2026. All rights reserved. ##
## Refactored by: Shadow ##
## ##
## Refactor: Incremental cleanup (compatibility preserved) ##
## Notes: PHP 7+ / legacy safe ##
## ##
## URLs: http://travian.shadowss.ro ##
## https://github.com/Shadowss/TravianZ ##
## ##
#################################################################################
@@ -13,63 +20,77 @@ class Form {
private $errorarray = array();
public $valuearray = array();
private $errorcount;
private $errorcount = 0;
public function __construct() {
if(isset($_SESSION['errorarray']) && isset($_SESSION['valuearray'])) {
if (isset($_SESSION['errorarray']) && isset($_SESSION['valuearray'])) {
$this->errorarray = $_SESSION['errorarray'];
$this->valuearray = $_SESSION['valuearray'];
$this->errorcount = count($this->errorarray);
unset($_SESSION['errorarray']);
unset($_SESSION['valuearray']);
unset($_SESSION['errorarray'], $_SESSION['valuearray']);
} else {
$this->errorcount = 0;
}
else $this->errorcount = 0;
}
public function addError($field,$error) {
public function addError($field, $error) {
$this->errorarray[$field] = $error;
$this->errorcount = count($this->errorarray);
}
public function getError($field) {
if(array_key_exists($field,$this->errorarray)) {
if (array_key_exists($field, $this->errorarray)) {
return $this->errorarray[$field];
}
else return "";
return "";
}
public function getValue($field) {
if(array_key_exists($field,$this->valuearray)) {
if (array_key_exists($field, $this->valuearray)) {
return $this->valuearray[$field];
}
else return "";
return "";
}
public function setValue($field, $value) {
$this->valuearray[$field] = $value;
$this->valuearray[$field] = $value;
}
public function getDiff($field,$cookie) {
if(array_key_exists($field,$this->valuearray) && $this->valuearray[$field] != $cookie) {
public function getDiff($field, $cookie) {
if (array_key_exists($field, $this->valuearray) && $this->valuearray[$field] != $cookie) {
return $this->valuearray[$field];
}
else return $cookie;
return $cookie;
}
public function getRadio($field,$value) {
if(array_key_exists($field,$this->valuearray) && $this->valuearray[$field] == $value) {
public function getRadio($field, $value) {
if (array_key_exists($field, $this->valuearray) && $this->valuearray[$field] == $value) {
return "checked";
}
else return "";
return "";
}
public function returnErrors() {
return $this->errorcount;
}
public function getErrors() {
return $this->errorarray;
}
};
}
?>