Ferreteria/v0.6/clade/Sys/Events/ItWent/@removed
Jump to navigation
Jump to search
|
Removed Code
|
2025-10-26
Commented out earlier:
#
// 2025-10-01 old API
private $hasError = FALSE;
public function HasError() : bool { return $this->hasError; }
public function AddError(int $n, string $s) : void {
$this->hasError = TRUE;
$o = new ($this->ErrorClass())($n,$s);
$this->AddMsgObject($o);
}
// 2025-01-24 revising message system
private $sMsg='';
public function HasMessage() : bool { return !empty($this->sMsg); }
public function SetMessage(string $s) { $this->sMsg = $s; }
public function GetMessage() : string { return $this->sMsg; }