From d85c3dae493f89881907e59457984ea4febedcff Mon Sep 17 00:00:00 2001 From: latham Date: Wed, 22 Jun 2011 16:37:01 +0000 Subject: [PATCH] Add some notes, and todo about the validators --- CODING_NOTES.php.txt | 5 +++++ TODO.txt | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/CODING_NOTES.php.txt b/CODING_NOTES.php.txt index da9f2db897..9b7ae8e613 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 1ea9dbdc39..16a54abd15 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 -------------------------------------- -- GitLab