CodeIgniter Forums
Where can I find all the built in rules? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Where can I find all the built in rules? (/showthread.php?tid=1086)



Where can I find all the built in rules? - eldan88 - 02-10-2015

Hey Guys,

Is there a way where I can view all the built in CodeIgniter Rules for this following function

set_rules($field[, $label = ''[, $rules = '']

I read that you can pipe the rules in the 3 parameter, but only saw 3 or 4 rules. Was wondering if I can find more. Any help would really appreciated.


RE: Where can I find all the built in rules? - InsiteFX - 02-10-2015

You can find all the rules at the bottom of the ./system/libraries/form_validation.php file as methods/functions.


RE: Where can I find all the built in rules? - Avenirer - 02-11-2015

http://www.codeigniter.com/userguide3/libraries/form_validation.html#rule-reference


RE: Where can I find all the built in rules? - eldan88 - 02-11-2015

(02-11-2015, 01:04 AM)Avenirer Wrote: http://www.codeigniter.com/userguide3/libraries/form_validation.html#rule-reference

Go it. Thanks a lot!!