History of Last Changes (for ApPHP FormBuilder)
You can read here a brief list of last changes:
Version 2.0.2 (Jul 14, 2016)
Version 2.0.1 (Jun 05, 2013)
Version 2.0.0 (Nov 18, 2012)
Version 2.0.2 (Jul 14, 2016)
- Fix bugs fixed
Version 2.0.1 (Jun 05, 2013)
- New new validation type: oneOfSet (class ValidatorTypeOneOfSet).
- New versioning. Validator class current version can be got with method $validator->GetVersion(), major version can be checked with $validator->CheckMajorVersion($needed).
- New method $validator->GetErrorArrayIndexedByField(), which returns error array as array($fieldName => array(ValidatorError $error1, ValidatorError $error2)).
- Enh errors messages for strings are more specific: additional elements are added.
- Fix bugs fixed
Version 2.0.0 (Nov 18, 2012)
- New IP check.
- New Phone number check. A cell phone can be checked optionally.
- New Postcode check. Postcode can be checked specifically for a country or generally for any possible postcode.
- New SSN check. American Social security number is checked.
- New JSON parser. Data can be loaded and validated as JSON.
- New XML parser. Data can be loaded and validated as XML.
- Enh
- Enh numeric precision check.
- Enh a comma or a dot as decimal separator. If numeric is got as string, you can state what kind of separator you demand.
- Enh HEX type. Now a HEX number can be checked for format, minimum or maximum value.
- Enh any optional meta characters can be set as allowed (i.e. to check a login you can set non-space, non-pointing and add a meta character '_'. Then possible login can consist only of letters, digits and '_' ).
- Fix bugs fixed