mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-06 04:44:21 +00:00
For incremental refactor + some credits
This commit is contained in:
+41
-20
@@ -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;
|
||||
}
|
||||
};
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user