Public Member Functions | |
zRom_fields ($value, $err_msg, $isValid, $validationStatus) | |
__construct ($value, $err_msg, $isValid, $validationStatus) | |
Constructor of this Class. | |
isValid () | |
Simply returns wheather the field is valid or not. | |
errMsg () | |
Returns the Error Message assigned for this Field. | |
Data Fields | |
$value | |
$err_msg | |
$isValid | |
$validationStatus |
A GET/POST field and its corresponding attributes and parameters are Embedded in this Class's object
Definition at line 92 of file map.php.
zRom_fields::__construct | ( | $ | value, | |
$ | err_msg, | |||
$ | isValid, | |||
$ | validationStatus | |||
) |
Constructor of this Class.
$value | string | |
$err_msg | string | |
$isValid | bool | |
$validationStatus | string |
Definition at line 133 of file map.php.
References $err_msg, $isValid, $validationStatus, $value, and isValid().
00133 { 00134 $this->value = $value; 00135 $this->err_msg = $err_msg; 00136 $this->isValid = $isValid; 00137 $this->validationStatus = $validationStatus; 00138 }
zRom_fields::zRom_fields | ( | $ | value, | |
$ | err_msg, | |||
$ | isValid, | |||
$ | validationStatus | |||
) |
Definition at line 122 of file map.php.
References $err_msg, $isValid, $validationStatus, $value, and zCore::__construct().
00122 { 00123 $this->__construct($value, $err_msg, $isValid, $validationStatus); 00124 }
zRom_fields::isValid | ( | ) |
Simply returns wheather the field is valid or not.
Definition at line 144 of file map.php.
Referenced by __construct().
00144 { 00145 return $this->isValid; 00146 }
zRom_fields::errMsg | ( | ) |
zRom_fields::$value |
zRom_fields::$err_msg |
zRom_fields::$isValid |
zRom_fields::$validationStatus |