diff --git a/CODING_NOTES.php.txt b/CODING_NOTES.php.txt index da9f2db897c0dbbb4078e3fa298e37b9b863a925..9b7ae8e61333091b7f801a3a087ef3c4d18280cc 100644 --- a/CODING_NOTES.php.txt +++ b/CODING_NOTES.php.txt @@ -122,4 +122,9 @@ $app->uses('ini_parser,getconf'); $web_config = $app->getconf->get_server_config($server_id,'web'); +//***************************************************************************** +// Learn about the form validators +//***************************************************************************** +There are form validators in interface/lib/classes/tform.inc.php to make validating forms easier. +Read about: REGEX,UNIQUE,NOTEMPTY,ISEMAIL,ISINT,ISPOSITIVE,ISIPV4,CUSTOM diff --git a/TODO.txt b/TODO.txt index 1ea9dbdc393f5b311783d0705c35c856cda95b96..16a54abd151996f95d6c033a23838462adf1e8b7 100644 --- a/TODO.txt +++ b/TODO.txt @@ -6,6 +6,11 @@ Please feel free to edit this file, add new tasks, remove done tasks or assign yourself to a task. +Form Validators +-------------------------------------- +ISIPV4 does a manual check, PHP5 now has FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 which may be better. +There also will be a time to add ISIPV6 or ISIPADDR to validate for IPv6 or both + Installer --------------------------------------