converted to unix-style eol
[www-register-wizard.git] / libraries / Form_validation.php
index 1215e13..528d410 100644 (file)
-<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');\r
-/**\r
- * CodeIgniter\r
- *\r
- * An open source application development framework for PHP 4.3.2 or newer\r
- *\r
- * @package            CodeIgniter\r
- * @author             ExpressionEngine Dev Team\r
- * @copyright  Copyright (c) 2008, EllisLab, Inc.\r
- * @license            http://codeigniter.com/user_guide/license.html\r
- * @link               http://codeigniter.com\r
- * @since              Version 1.0\r
- * @filesource\r
- */\r
-\r
-// ------------------------------------------------------------------------\r
-\r
-/**\r
- * Form Validation Class\r
- *\r
- * @package            CodeIgniter\r
- * @subpackage Libraries\r
- * @category   Validation\r
- * @author             ExpressionEngine Dev Team\r
- * @link               http://codeigniter.com/user_guide/libraries/form_validation.html\r
- */\r
-class CI_Form_validation {\r
-       \r
-       var $CI;\r
-       var $_field_data                        = array();      \r
-       var $_config_rules                      = array();\r
-       var $_error_array                       = array();\r
-       var $_error_messages            = array();      \r
-       var $_error_prefix                      = '<p>';\r
-       var $_error_suffix                      = '</p>';\r
-       var $error_string                       = '';\r
-       var $_safe_form_data            = FALSE;\r
-\r
-\r
-       /**\r
-        * Constructor\r
-        *\r
-        */     \r
-       function CI_Form_validation($rules = array())\r
-       {       \r
-               $this->CI =& get_instance();\r
-               \r
-               // Validation rules can be stored in a config file.\r
-               $this->_config_rules = $rules;\r
-               \r
-               // Automatically load the form helper\r
-               $this->CI->load->helper('form');\r
-\r
-               // Set the character encoding in MB.\r
-               if (function_exists('mb_internal_encoding'))\r
-               {\r
-                       mb_internal_encoding($this->CI->config->item('charset'));\r
-               }\r
-       \r
-               log_message('debug', "Validation Class Initialized");\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Set Rules\r
-        *\r
-        * This function takes an array of field names and validation\r
-        * rules as input, validates the info, and stores it\r
-        *\r
-        * @access      public\r
-        * @param       mixed\r
-        * @param       string\r
-        * @return      void\r
-        */\r
-       function set_rules($field, $label = '', $rules = '')\r
-       {\r
-               // No reason to set rules if we have no POST data\r
-               if (count($_POST) == 0)\r
-               {\r
-                       return;\r
-               }\r
-       \r
-               // If an array was passed via the first parameter instead of indidual string\r
-               // values we cycle through it and recursively call this function.\r
-               if (is_array($field))\r
-               {\r
-                       foreach ($field as $row)\r
-                       {\r
-                               // Houston, we have a problem...\r
-                               if ( ! isset($row['field']) OR ! isset($row['rules']))\r
-                               {\r
-                                       continue;\r
-                               }\r
-\r
-                               // If the field label wasn't passed we use the field name\r
-                               $label = ( ! isset($row['label'])) ? $row['field'] : $row['label'];\r
-\r
-                               // Here we go!\r
-                               $this->set_rules($row['field'], $label, $row['rules']);\r
-                       }\r
-                       return;\r
-               }\r
-               \r
-               // No fields? Nothing to do...\r
-               if ( ! is_string($field) OR  ! is_string($rules) OR $field == '')\r
-               {\r
-                       return;\r
-               }\r
-\r
-               // If the field label wasn't passed we use the field name\r
-               $label = ($label == '') ? $field : $label;\r
-\r
-               // Is the field name an array?  We test for the existence of a bracket "[" in\r
-               // the field name to determine this.  If it is an array, we break it apart\r
-               // into its components so that we can fetch the corresponding POST data later           \r
-               if (strpos($field, '[') !== FALSE AND preg_match_all('/\[(.*?)\]/', $field, $matches))\r
-               {       \r
-                       // Note: Due to a bug in current() that affects some versions\r
-                       // of PHP we can not pass function call directly into it\r
-                       $x = explode('[', $field);\r
-                       $indexes[] = current($x);\r
-\r
-                       for ($i = 0; $i < count($matches['0']); $i++)\r
-                       {\r
-                               if ($matches['1'][$i] != '')\r
-                               {\r
-                                       $indexes[] = $matches['1'][$i];\r
-                               }\r
-                       }\r
-                       \r
-                       $is_array = TRUE;\r
-               }\r
-               else\r
-               {\r
-                       $indexes        = array();\r
-                       $is_array       = FALSE;                \r
-               }\r
-               \r
-               // Build our master array               \r
-               $this->_field_data[$field] = array(\r
-                                                                                       'field'                         => $field, \r
-                                                                                       'label'                         => $label, \r
-                                                                                       'rules'                         => $rules,\r
-                                                                                       'is_array'                      => $is_array,\r
-                                                                                       'keys'                          => $indexes,\r
-                                                                                       'postdata'                      => NULL,\r
-                                                                                       'error'                         => ''\r
-                                                                                       );\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Set Error Message\r
-        *\r
-        * Lets users set their own error messages on the fly.  Note:  The key\r
-        * name has to match the  function name that it corresponds to.\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @param       string\r
-        * @return      string\r
-        */\r
-       function set_message($lang, $val = '')\r
-       {\r
-               if ( ! is_array($lang))\r
-               {\r
-                       $lang = array($lang => $val);\r
-               }\r
-       \r
-               $this->_error_messages = array_merge($this->_error_messages, $lang);\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Set The Error Delimiter\r
-        *\r
-        * Permits a prefix/suffix to be added to each error message\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @param       string\r
-        * @return      void\r
-        */     \r
-       function set_error_delimiters($prefix = '<p>', $suffix = '</p>')\r
-       {\r
-               $this->_error_prefix = $prefix;\r
-               $this->_error_suffix = $suffix;\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Get Error Message\r
-        *\r
-        * Gets the error message associated with a particular field\r
-        *\r
-        * @access      public\r
-        * @param       string  the field name\r
-        * @return      void\r
-        */     \r
-       function error($field = '', $prefix = '', $suffix = '')\r
-       {       \r
-               if ( ! isset($this->_field_data[$field]['error']) OR $this->_field_data[$field]['error'] == '')\r
-               {\r
-                       return '';\r
-               }\r
-               \r
-               if ($prefix == '')\r
-               {\r
-                       $prefix = $this->_error_prefix;\r
-               }\r
-\r
-               if ($suffix == '')\r
-               {\r
-                       $suffix = $this->_error_suffix;\r
-               }\r
-\r
-               return $prefix.$this->_field_data[$field]['error'].$suffix;\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Error String\r
-        *\r
-        * Returns the error messages as a string, wrapped in the error delimiters\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @param       string\r
-        * @return      str\r
-        */     \r
-       function error_string($prefix = '', $suffix = '')\r
-       {\r
-               // No errrors, validation passes!\r
-               if (count($this->_error_array) === 0)\r
-               {\r
-                       return '';\r
-               }\r
-               \r
-               if ($prefix == '')\r
-               {\r
-                       $prefix = $this->_error_prefix;\r
-               }\r
-\r
-               if ($suffix == '')\r
-               {\r
-                       $suffix = $this->_error_suffix;\r
-               }\r
-               \r
-               // Generate the error string\r
-               $str = '';\r
-               foreach ($this->_error_array as $val)\r
-               {\r
-                       if ($val != '')\r
-                       {\r
-                               $str .= $prefix.$val.$suffix."\n";\r
-                       }\r
-               }\r
-               \r
-               return $str;\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Run the Validator\r
-        *\r
-        * This function does all the work.\r
-        *\r
-        * @access      public\r
-        * @return      bool\r
-        */             \r
-       function run($group = '')\r
-       {\r
-               // Do we even have any data to process?  Mm?\r
-               if (count($_POST) == 0)\r
-               {\r
-                       return FALSE;\r
-               }\r
-               \r
-               // Does the _field_data array containing the validation rules exist?\r
-               // If not, we look to see if they were assigned via a config file\r
-               if (count($this->_field_data) == 0)\r
-               {\r
-                       // No validation rules?  We're done...\r
-                       if (count($this->_config_rules) == 0)\r
-                       {\r
-                               return FALSE;\r
-                       }\r
-                       \r
-                       // Is there a validation rule for the particular URI being accessed?\r
-                       $uri = ($group == '') ? trim($this->CI->uri->ruri_string(), '/') : $group;\r
-                       \r
-                       if ($uri != '' AND isset($this->_config_rules[$uri]))\r
-                       {\r
-                               $this->set_rules($this->_config_rules[$uri]);\r
-                       }\r
-                       else\r
-                       {\r
-                               $this->set_rules($this->_config_rules);\r
-                       }\r
-       \r
-                       // We're we able to set the rules correctly?\r
-                       if (count($this->_field_data) == 0)\r
-                       {\r
-                               log_message('debug', "Unable to find validation rules");\r
-                               return FALSE;\r
-                       }\r
-               }\r
-       \r
-               // Load the language file containing error messages\r
-               $this->CI->lang->load('form_validation');\r
-                                                       \r
-               // Cycle through the rules for each field, match the \r
-               // corresponding $_POST item and test for errors\r
-               foreach ($this->_field_data as $field => $row)\r
-               {               \r
-                       // Fetch the data from the corresponding $_POST array and cache it in the _field_data array.\r
-                       // Depending on whether the field name is an array or a string will determine where we get it from.\r
-                       \r
-                       if ($row['is_array'] == TRUE)\r
-                       {\r
-                               $this->_field_data[$field]['postdata'] = $this->_reduce_array($_POST, $row['keys']);\r
-                       }\r
-                       else\r
-                       {\r
-                               if (isset($_POST[$field]) AND $_POST[$field] != "")\r
-                               {\r
-                                       $this->_field_data[$field]['postdata'] = $_POST[$field];\r
-                               }\r
-                       }\r
-               \r
-                       $this->_execute($row, explode('|', $row['rules']), $this->_field_data[$field]['postdata']);             \r
-               }\r
-\r
-               // Did we end up with any errors?\r
-               $total_errors = count($this->_error_array);\r
-\r
-               if ($total_errors > 0)\r
-               {\r
-                       $this->_safe_form_data = TRUE;\r
-               }\r
-\r
-               // Now we need to re-set the POST data with the new, processed data\r
-               $this->_reset_post_array();\r
-               \r
-               // No errors, validation passes!\r
-               if ($total_errors == 0)\r
-               {\r
-                       return TRUE;\r
-               }\r
-\r
-               // Validation fails\r
-               return FALSE;\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Traverse a multidimensional $_POST array index until the data is found\r
-        *\r
-        * @access      private\r
-        * @param       array\r
-        * @param       array\r
-        * @param       integer\r
-        * @return      mixed\r
-        */             \r
-       function _reduce_array($array, $keys, $i = 0)\r
-       {\r
-               if (is_array($array))\r
-               {\r
-                       if (isset($keys[$i]))\r
-                       {\r
-                               if (isset($array[$keys[$i]]))\r
-                               {\r
-                                       $array = $this->_reduce_array($array[$keys[$i]], $keys, ($i+1));\r
-                               }\r
-                               else\r
-                               {\r
-                                       return NULL;\r
-                               }\r
-                       }\r
-                       else\r
-                       {\r
-                               return $array;\r
-                       }\r
-               }\r
-       \r
-               return $array;\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Re-populate the _POST array with our finalized and processed data\r
-        *\r
-        * @access      private\r
-        * @return      null\r
-        */             \r
-       function _reset_post_array()\r
-       {\r
-               foreach ($this->_field_data as $field => $row)\r
-               {\r
-                       if ( ! is_null($row['postdata']))\r
-                       {\r
-                               if ($row['is_array'] == FALSE)\r
-                               {\r
-                                       if (isset($_POST[$row['field']]))\r
-                                       {\r
-                                               $_POST[$row['field']] = $this->prep_for_form($row['postdata']);\r
-                                       }\r
-                               }\r
-                               else\r
-                               {\r
-                                       $post = '$_POST["';\r
-                                       \r
-                                       if (count($row['keys']) == 1)\r
-                                       {\r
-                                               $post .= current($row['keys']);\r
-                                               $post .= '"]';\r
-                                       }\r
-                                       else\r
-                                       {\r
-                                               $i = 0;\r
-                                               foreach ($row['keys'] as $val)\r
-                                               {\r
-                                                       if ($i == 0)\r
-                                                       {\r
-                                                               $post .= $val.'"]';\r
-                                                               $i++;\r
-                                                               continue;\r
-                                                       }\r
-                                               \r
-                                                       $post .= '["'.$val.'"]';\r
-                                               }\r
-                                       }\r
-                                       \r
-                                       if (is_array($row['postdata']))\r
-                                       {                                       \r
-                                               $array = array();\r
-                                               foreach ($row['postdata'] as $k => $v)\r
-                                               {\r
-                                                       $array[$k] = $this->prep_for_form($v);\r
-                                               }\r
-                                               \r
-                                               $post .= ' = $array;';\r
-                                       }\r
-                                       else\r
-                                       {                                               \r
-                                               $post .= ' = "'.$this->prep_for_form($row['postdata']).'";';\r
-                                       }\r
-\r
-                                       eval($post);\r
-                               }\r
-                       }\r
-               }\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Executes the Validation routines\r
-        *\r
-        * @access      private\r
-        * @param       array\r
-        * @param       array\r
-        * @param       mixed\r
-        * @param       integer\r
-        * @return      mixed\r
-        */     \r
-       function _execute($row, $rules, $postdata = NULL, $cycles = 0)\r
-       {\r
-               // If the $_POST data is an array we will run a recursive call\r
-               if (is_array($postdata))\r
-               { \r
-                       foreach ($postdata as $key => $val)\r
-                       {\r
-                               $this->_execute($row, $rules, $val, $cycles);\r
-                               $cycles++;\r
-                       }\r
-                       \r
-                       return;\r
-               }\r
-               \r
-               // --------------------------------------------------------------------\r
-\r
-               // If the field is blank, but NOT required, no further tests are necessary\r
-               $callback = FALSE;\r
-               if ( ! in_array('required', $rules) AND is_null($postdata))\r
-               {\r
-                       // Before we bail out, does the rule contain a callback?\r
-                       if (preg_match("/(callback_\w+)/", implode(' ', $rules), $match))\r
-                       {\r
-                               $callback = TRUE;\r
-                               $rules = (array('1' => $match[1]));\r
-                       }\r
-                       else\r
-                       {\r
-                               return;\r
-                       }\r
-               }\r
-\r
-               // --------------------------------------------------------------------\r
-               \r
-               // Isset Test. Typically this rule will only apply to checkboxes.\r
-               if (is_null($postdata) AND $callback == FALSE)\r
-               {\r
-                       if (in_array('isset', $rules, TRUE) OR in_array('required', $rules))\r
-                       {\r
-                               // Set the message type\r
-                               $type = (in_array('required', $rules)) ? 'required' : 'isset';\r
-                       \r
-                               if ( ! isset($this->_error_messages[$type]))\r
-                               {\r
-                                       if (FALSE === ($line = $this->CI->lang->line($type)))\r
-                                       {\r
-                                               $line = 'The field was not set';\r
-                                       }                                                       \r
-                               }\r
-                               else\r
-                               {\r
-                                       $line = $this->_error_messages[$type];\r
-                               }\r
-                               \r
-                               // Build the error message\r
-                               $message = sprintf($line, $this->_translate_fieldname($row['label']));\r
-\r
-                               // Save the error message\r
-                               $this->_field_data[$row['field']]['error'] = $message;\r
-                               \r
-                               if ( ! isset($this->_error_array[$row['field']]))\r
-                               {\r
-                                       $this->_error_array[$row['field']] = $message;\r
-                               }\r
-                       }\r
-                                       \r
-                       return;\r
-               }\r
-\r
-               // --------------------------------------------------------------------\r
-\r
-               // Cycle through each rule and run it\r
-               foreach ($rules As $rule)\r
-               {\r
-                       $_in_array = FALSE;\r
-                       \r
-                       // We set the $postdata variable with the current data in our master array so that\r
-                       // each cycle of the loop is dealing with the processed data from the last cycle\r
-                       if ($row['is_array'] == TRUE AND is_array($this->_field_data[$row['field']]['postdata']))\r
-                       {\r
-                               // We shouldn't need this safety, but just in case there isn't an array index\r
-                               // associated with this cycle we'll bail out\r
-                               if ( ! isset($this->_field_data[$row['field']]['postdata'][$cycles]))\r
-                               {\r
-                                       continue;\r
-                               }\r
-                       \r
-                               $postdata = $this->_field_data[$row['field']]['postdata'][$cycles];\r
-                               $_in_array = TRUE;\r
-                       }\r
-                       else\r
-                       {\r
-                               $postdata = $this->_field_data[$row['field']]['postdata'];\r
-                       }\r
-\r
-                       // --------------------------------------------------------------------\r
-       \r
-                       // Is the rule a callback?                      \r
-                       $callback = FALSE;\r
-                       if (substr($rule, 0, 9) == 'callback_')\r
-                       {\r
-                               $rule = substr($rule, 9);\r
-                               $callback = TRUE;\r
-                       }\r
-                       \r
-                       // Strip the parameter (if exists) from the rule\r
-                       // Rules can contain a parameter: max_length[5]\r
-                       $param = FALSE;\r
-                       if (preg_match("/(.*?)\[(.*?)\]/", $rule, $match))\r
-                       {\r
-                               $rule   = $match[1];\r
-                               $param  = $match[2];\r
-                       }\r
-                       \r
-                       // Call the function that corresponds to the rule\r
-                       if ($callback === TRUE)\r
-                       {\r
-                               if ( ! method_exists($this->CI, $rule))\r
-                               {               \r
-                                       continue;\r
-                               }\r
-                               \r
-                               // Run the function and grab the result\r
-                               $result = $this->CI->$rule($postdata, $param);\r
-\r
-                               // Re-assign the result to the master data array\r
-                               if ($_in_array == TRUE)\r
-                               {\r
-                                       $this->_field_data[$row['field']]['postdata'][$cycles] = (is_bool($result)) ? $postdata : $result;\r
-                               }\r
-                               else\r
-                               {\r
-                                       $this->_field_data[$row['field']]['postdata'] = (is_bool($result)) ? $postdata : $result;\r
-                               }\r
-                       \r
-                               // If the field isn't required and we just processed a callback we'll move on...\r
-                               if ( ! in_array('required', $rules, TRUE) AND $result !== FALSE)\r
-                               {\r
-                                       return;\r
-                               }\r
-                       }\r
-                       else\r
-                       {                               \r
-                               if ( ! method_exists($this, $rule))\r
-                               {\r
-                                       // If our own wrapper function doesn't exist we see if a native PHP function does. \r
-                                       // Users can use any native PHP function call that has one param.\r
-                                       if (function_exists($rule))\r
-                                       {\r
-                                               $result = $rule($postdata);\r
-                                                                                       \r
-                                               if ($_in_array == TRUE)\r
-                                               {\r
-                                                       $this->_field_data[$row['field']]['postdata'][$cycles] = (is_bool($result)) ? $postdata : $result;\r
-                                               }\r
-                                               else\r
-                                               {\r
-                                                       $this->_field_data[$row['field']]['postdata'] = (is_bool($result)) ? $postdata : $result;\r
-                                               }\r
-                                       }\r
-                                                                               \r
-                                       continue;\r
-                               }\r
-\r
-                               $result = $this->$rule($postdata, $param);\r
-\r
-                               if ($_in_array == TRUE)\r
-                               {\r
-                                       $this->_field_data[$row['field']]['postdata'][$cycles] = (is_bool($result)) ? $postdata : $result;\r
-                               }\r
-                               else\r
-                               {\r
-                                       $this->_field_data[$row['field']]['postdata'] = (is_bool($result)) ? $postdata : $result;\r
-                               }\r
-                       }\r
-                                                       \r
-                       // Did the rule test negatively?  If so, grab the error.\r
-                       if ($result === FALSE)\r
-                       {                       \r
-                               if ( ! isset($this->_error_messages[$rule]))\r
-                               {\r
-                                       if (FALSE === ($line = $this->CI->lang->line($rule)))\r
-                                       {\r
-                                               $line = 'Unable to access an error message corresponding to your field name.';\r
-                                       }                                               \r
-                               }\r
-                               else\r
-                               {\r
-                                       $line = $this->_error_messages[$rule];\r
-                               }\r
-\r
-                               // Build the error message\r
-                               $message = sprintf($line, $this->_translate_fieldname($row['label']), $param);\r
-\r
-                               // Save the error message\r
-                               $this->_field_data[$row['field']]['error'] = $message;\r
-                               \r
-                               if ( ! isset($this->_error_array[$row['field']]))\r
-                               {\r
-                                       $this->_error_array[$row['field']] = $message;\r
-                               }\r
-                               \r
-                               return;\r
-                       }\r
-               }\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Translate a field name\r
-        *\r
-        * @access      private\r
-        * @param       string  the field name\r
-        * @return      string\r
-        */     \r
-       function _translate_fieldname($fieldname)\r
-       {\r
-               // Do we need to translate the field name?\r
-               // We look for the prefix lang: to determine this\r
-               if (substr($fieldname, 0, 5) == 'lang:')\r
-               {\r
-                       // Grab the variable\r
-                       $line = substr($fieldname, 5);                  \r
-                       \r
-                       // Were we able to translate the field name?  If not we use $line\r
-                       if (FALSE === ($fieldname = $this->CI->lang->line($line)))\r
-                       {\r
-                               return $line;\r
-                       }\r
-               }\r
-\r
-               return $fieldname;\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Get the value from a form\r
-        *\r
-        * Permits you to repopulate a form field with the value it was submitted\r
-        * with, or, if that value doesn't exist, with the default\r
-        *\r
-        * @access      public\r
-        * @param       string  the field name\r
-        * @param       string\r
-        * @return      void\r
-        */     \r
-       function set_value($field = '', $default = '')\r
-       {\r
-               if ( ! isset($this->_field_data[$field]))\r
-               {\r
-                       return $default;\r
-               }\r
-               \r
-               return $this->_field_data[$field]['postdata'];\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Set Select\r
-        *\r
-        * Enables pull-down lists to be set to the value the user\r
-        * selected in the event of an error\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @param       string\r
-        * @return      string\r
-        */     \r
-       function set_select($field = '', $value = '', $default = FALSE)\r
-       {               \r
-               if ( ! isset($this->_field_data[$field]) OR ! isset($this->_field_data[$field]['postdata']))\r
-               {\r
-                       if ($default === TRUE AND count($this->_field_data) === 0)\r
-                       {\r
-                               return ' selected="selected"';\r
-                       }\r
-                       return '';\r
-               }\r
-       \r
-               $field = $this->_field_data[$field]['postdata'];\r
-               \r
-               if (is_array($field))\r
-               {\r
-                       if ( ! in_array($value, $field))\r
-                       {\r
-                               return '';\r
-                       }\r
-               }\r
-               else\r
-               {\r
-                       if (($field == '' OR $value == '') OR ($field != $value))\r
-                       {\r
-                               return '';\r
-                       }\r
-               }\r
-                       \r
-               return ' selected="selected"';\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Set Radio\r
-        *\r
-        * Enables radio buttons to be set to the value the user\r
-        * selected in the event of an error\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @param       string\r
-        * @return      string\r
-        */     \r
-       function set_radio($field = '', $value = '', $default = FALSE)\r
-       {\r
-               if ( ! isset($this->_field_data[$field]) OR ! isset($this->_field_data[$field]['postdata']))\r
-               {\r
-                       if ($default === TRUE AND count($this->_field_data) === 0)\r
-                       {\r
-                               return ' checked="checked"';\r
-                       }\r
-                       return '';\r
-               }\r
-       \r
-               $field = $this->_field_data[$field]['postdata'];\r
-               \r
-               if (is_array($field))\r
-               {\r
-                       if ( ! in_array($value, $field))\r
-                       {\r
-                               return '';\r
-                       }\r
-               }\r
-               else\r
-               {\r
-                       if (($field == '' OR $value == '') OR ($field != $value))\r
-                       {\r
-                               return '';\r
-                       }\r
-               }\r
-                       \r
-               return ' checked="checked"';\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Set Checkbox\r
-        *\r
-        * Enables checkboxes to be set to the value the user\r
-        * selected in the event of an error\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @param       string\r
-        * @return      string\r
-        */     \r
-       function set_checkbox($field = '', $value = '', $default = FALSE)\r
-       {\r
-               if ( ! isset($this->_field_data[$field]) OR ! isset($this->_field_data[$field]['postdata']))\r
-               {\r
-                       if ($default === TRUE AND count($this->_field_data) === 0)\r
-                       {\r
-                               return ' checked="checked"';\r
-                       }\r
-                       return '';\r
-               }\r
-       \r
-               $field = $this->_field_data[$field]['postdata'];\r
-               \r
-               if (is_array($field))\r
-               {\r
-                       if ( ! in_array($value, $field))\r
-                       {\r
-                               return '';\r
-                       }\r
-               }\r
-               else\r
-               {\r
-                       if (($field == '' OR $value == '') OR ($field != $value))\r
-                       {\r
-                               return '';\r
-                       }\r
-               }\r
-                       \r
-               return ' checked="checked"';\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Required\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      bool\r
-        */\r
-       function required($str)\r
-       {\r
-               if ( ! is_array($str))\r
-               {\r
-                       return (trim($str) == '') ? FALSE : TRUE;\r
-               }\r
-               else\r
-               {\r
-                       return ( ! empty($str));\r
-               }\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Match one field to another\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @param       field\r
-        * @return      bool\r
-        */\r
-       function matches($str, $field)\r
-       {\r
-               if ( ! isset($_POST[$field]))\r
-               {\r
-                       return FALSE;                           \r
-               }\r
-               \r
-               $field = $_POST[$field];\r
-\r
-               return ($str !== $field) ? FALSE : TRUE;\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Minimum Length\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @param       value\r
-        * @return      bool\r
-        */     \r
-       function min_length($str, $val)\r
-       {\r
-               if (preg_match("/[^0-9]/", $val))\r
-               {\r
-                       return FALSE;\r
-               }\r
-\r
-               if (function_exists('mb_strlen'))\r
-               {\r
-                       return (mb_strlen($str) < $val) ? FALSE : TRUE;         \r
-               }\r
-       \r
-               return (strlen($str) < $val) ? FALSE : TRUE;\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Max Length\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @param       value\r
-        * @return      bool\r
-        */     \r
-       function max_length($str, $val)\r
-       {\r
-               if (preg_match("/[^0-9]/", $val))\r
-               {\r
-                       return FALSE;\r
-               }\r
-\r
-               if (function_exists('mb_strlen'))\r
-               {\r
-                       return (mb_strlen($str) > $val) ? FALSE : TRUE;         \r
-               }\r
-       \r
-               return (strlen($str) > $val) ? FALSE : TRUE;\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Exact Length\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @param       value\r
-        * @return      bool\r
-        */     \r
-       function exact_length($str, $val)\r
-       {\r
-               if (preg_match("/[^0-9]/", $val))\r
-               {\r
-                       return FALSE;\r
-               }\r
-\r
-               if (function_exists('mb_strlen'))\r
-               {\r
-                       return (mb_strlen($str) != $val) ? FALSE : TRUE;                \r
-               }\r
-       \r
-               return (strlen($str) != $val) ? FALSE : TRUE;\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Valid Email\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      bool\r
-        */     \r
-       function valid_email($str)\r
-       {\r
-               return ( ! preg_match("/^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/ix", $str)) ? FALSE : TRUE;\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Valid Emails\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      bool\r
-        */     \r
-       function valid_emails($str)\r
-       {\r
-               if (strpos($str, ',') === FALSE)\r
-               {\r
-                       return $this->valid_email(trim($str));\r
-               }\r
-               \r
-               foreach(explode(',', $str) as $email)\r
-               {\r
-                       if (trim($email) != '' && $this->valid_email(trim($email)) === FALSE)\r
-                       {\r
-                               return FALSE;\r
-                       }\r
-               }\r
-               \r
-               return TRUE;\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Validate IP Address\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      string\r
-        */\r
-       function valid_ip($ip)\r
-       {\r
-               return $this->CI->input->valid_ip($ip);\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Alpha\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      bool\r
-        */             \r
-       function alpha($str)\r
-       {\r
-               return ( ! preg_match("/^([a-z])+$/i", $str)) ? FALSE : TRUE;\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Alpha-numeric\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      bool\r
-        */     \r
-       function alpha_numeric($str)\r
-       {\r
-               return ( ! preg_match("/^([a-z0-9])+$/i", $str)) ? FALSE : TRUE;\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Alpha-numeric with underscores and dashes\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      bool\r
-        */     \r
-       function alpha_dash($str)\r
-       {\r
-               return ( ! preg_match("/^([-a-z0-9_-])+$/i", $str)) ? FALSE : TRUE;\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Numeric\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      bool\r
-        */     \r
-       function numeric($str)\r
-       {\r
-               return (bool)preg_match( '/^[\-+]?[0-9]*\.?[0-9]+$/', $str);\r
-\r
-       }\r
-\r
-       // --------------------------------------------------------------------\r
-\r
-    /**\r
-     * Is Numeric\r
-     *\r
-     * @access    public\r
-     * @param    string\r
-     * @return    bool\r
-     */\r
-    function is_numeric($str)\r
-    {\r
-        return ( ! is_numeric($str)) ? FALSE : TRUE;\r
-    } \r
-\r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Integer\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      bool\r
-        */     \r
-       function integer($str)\r
-       {\r
-               return (bool)preg_match( '/^[\-+]?[0-9]+$/', $str);\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-\r
-    /**\r
-     * Is a Natural number  (0,1,2,3, etc.)\r
-     *\r
-     * @access public\r
-     * @param  string\r
-     * @return bool\r
-     */\r
-    function is_natural($str)\r
-    {   \r
-               return (bool)preg_match( '/^[0-9]+$/', $str);\r
-    }\r
-\r
-       // --------------------------------------------------------------------\r
-\r
-    /**\r
-     * Is a Natural number, but not a zero  (1,2,3, etc.)\r
-     *\r
-     * @access public\r
-     * @param  string\r
-     * @return bool\r
-     */\r
-       function is_natural_no_zero($str)\r
-    {\r
-       if ( ! preg_match( '/^[0-9]+$/', $str))\r
-       {\r
-               return FALSE;\r
-       }\r
-       \r
-       if ($str == 0)\r
-       {\r
-               return FALSE;\r
-       }\r
-    \r
-               return TRUE;\r
-    }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Valid Base64\r
-        *\r
-        * Tests a string for characters outside of the Base64 alphabet\r
-        * as defined by RFC 2045 http://www.faqs.org/rfcs/rfc2045\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      bool\r
-        */\r
-       function valid_base64($str)\r
-       {\r
-               return (bool) ! preg_match('/[^a-zA-Z0-9\/\+=]/', $str);\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Prep data for form\r
-        *\r
-        * This function allows HTML to be safely shown in a form.\r
-        * Special characters are converted.\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      string\r
-        */\r
-       function prep_for_form($data = '')\r
-       {\r
-               if (is_array($data))\r
-               {\r
-                       foreach ($data as $key => $val)\r
-                       {\r
-                               $data[$key] = $this->prep_for_form($val);\r
-                       }\r
-                       \r
-                       return $data;\r
-               }\r
-               \r
-               if ($this->_safe_form_data == FALSE OR $data === '')\r
-               {\r
-                       return $data;\r
-               }\r
-\r
-               return str_replace(array("'", '"', '<', '>'), array("&#39;", "&quot;", '&lt;', '&gt;'), stripslashes($data));\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Prep URL\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      string\r
-        */     \r
-       function prep_url($str = '')\r
-       {\r
-               if ($str == 'http://' OR $str == '')\r
-               {\r
-                       return '';\r
-               }\r
-               \r
-               if (substr($str, 0, 7) != 'http://' && substr($str, 0, 8) != 'https://')\r
-               {\r
-                       $str = 'http://'.$str;\r
-               }\r
-               \r
-               return $str;\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Strip Image Tags\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      string\r
-        */     \r
-       function strip_image_tags($str)\r
-       {\r
-               return $this->CI->input->strip_image_tags($str);\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * XSS Clean\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      string\r
-        */     \r
-       function xss_clean($str)\r
-       {\r
-               return $this->CI->input->xss_clean($str);\r
-       }\r
-       \r
-       // --------------------------------------------------------------------\r
-       \r
-       /**\r
-        * Convert PHP tags to entities\r
-        *\r
-        * @access      public\r
-        * @param       string\r
-        * @return      string\r
-        */     \r
-       function encode_php_tags($str)\r
-       {\r
-               return str_replace(array('<?php', '<?PHP', '<?', '?>'),  array('&lt;?php', '&lt;?PHP', '&lt;?', '?&gt;'), $str);\r
-       }\r
-\r
-}\r
-// END Form Validation Class\r
-\r
-/* End of file Form_validation.php */\r
+<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
+/**
+ * CodeIgniter
+ *
+ * An open source application development framework for PHP 4.3.2 or newer
+ *
+ * @package            CodeIgniter
+ * @author             ExpressionEngine Dev Team
+ * @copyright  Copyright (c) 2008, EllisLab, Inc.
+ * @license            http://codeigniter.com/user_guide/license.html
+ * @link               http://codeigniter.com
+ * @since              Version 1.0
+ * @filesource
+ */
+
+// ------------------------------------------------------------------------
+
+/**
+ * Form Validation Class
+ *
+ * @package            CodeIgniter
+ * @subpackage Libraries
+ * @category   Validation
+ * @author             ExpressionEngine Dev Team
+ * @link               http://codeigniter.com/user_guide/libraries/form_validation.html
+ */
+class CI_Form_validation {
+       
+       var $CI;
+       var $_field_data                        = array();      
+       var $_config_rules                      = array();
+       var $_error_array                       = array();
+       var $_error_messages            = array();      
+       var $_error_prefix                      = '<p>';
+       var $_error_suffix                      = '</p>';
+       var $error_string                       = '';
+       var $_safe_form_data            = FALSE;
+
+
+       /**
+        * Constructor
+        *
+        */     
+       function CI_Form_validation($rules = array())
+       {       
+               $this->CI =& get_instance();
+               
+               // Validation rules can be stored in a config file.
+               $this->_config_rules = $rules;
+               
+               // Automatically load the form helper
+               $this->CI->load->helper('form');
+
+               // Set the character encoding in MB.
+               if (function_exists('mb_internal_encoding'))
+               {
+                       mb_internal_encoding($this->CI->config->item('charset'));
+               }
+       
+               log_message('debug', "Validation Class Initialized");
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Set Rules
+        *
+        * This function takes an array of field names and validation
+        * rules as input, validates the info, and stores it
+        *
+        * @access      public
+        * @param       mixed
+        * @param       string
+        * @return      void
+        */
+       function set_rules($field, $label = '', $rules = '')
+       {
+               // No reason to set rules if we have no POST data
+               if (count($_POST) == 0)
+               {
+                       return;
+               }
+       
+               // If an array was passed via the first parameter instead of indidual string
+               // values we cycle through it and recursively call this function.
+               if (is_array($field))
+               {
+                       foreach ($field as $row)
+                       {
+                               // Houston, we have a problem...
+                               if ( ! isset($row['field']) OR ! isset($row['rules']))
+                               {
+                                       continue;
+                               }
+
+                               // If the field label wasn't passed we use the field name
+                               $label = ( ! isset($row['label'])) ? $row['field'] : $row['label'];
+
+                               // Here we go!
+                               $this->set_rules($row['field'], $label, $row['rules']);
+                       }
+                       return;
+               }
+               
+               // No fields? Nothing to do...
+               if ( ! is_string($field) OR  ! is_string($rules) OR $field == '')
+               {
+                       return;
+               }
+
+               // If the field label wasn't passed we use the field name
+               $label = ($label == '') ? $field : $label;
+
+               // Is the field name an array?  We test for the existence of a bracket "[" in
+               // the field name to determine this.  If it is an array, we break it apart
+               // into its components so that we can fetch the corresponding POST data later           
+               if (strpos($field, '[') !== FALSE AND preg_match_all('/\[(.*?)\]/', $field, $matches))
+               {       
+                       // Note: Due to a bug in current() that affects some versions
+                       // of PHP we can not pass function call directly into it
+                       $x = explode('[', $field);
+                       $indexes[] = current($x);
+
+                       for ($i = 0; $i < count($matches['0']); $i++)
+                       {
+                               if ($matches['1'][$i] != '')
+                               {
+                                       $indexes[] = $matches['1'][$i];
+                               }
+                       }
+                       
+                       $is_array = TRUE;
+               }
+               else
+               {
+                       $indexes        = array();
+                       $is_array       = FALSE;                
+               }
+               
+               // Build our master array               
+               $this->_field_data[$field] = array(
+                                                                                       'field'                         => $field, 
+                                                                                       'label'                         => $label, 
+                                                                                       'rules'                         => $rules,
+                                                                                       'is_array'                      => $is_array,
+                                                                                       'keys'                          => $indexes,
+                                                                                       'postdata'                      => NULL,
+                                                                                       'error'                         => ''
+                                                                                       );
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Set Error Message
+        *
+        * Lets users set their own error messages on the fly.  Note:  The key
+        * name has to match the  function name that it corresponds to.
+        *
+        * @access      public
+        * @param       string
+        * @param       string
+        * @return      string
+        */
+       function set_message($lang, $val = '')
+       {
+               if ( ! is_array($lang))
+               {
+                       $lang = array($lang => $val);
+               }
+       
+               $this->_error_messages = array_merge($this->_error_messages, $lang);
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Set The Error Delimiter
+        *
+        * Permits a prefix/suffix to be added to each error message
+        *
+        * @access      public
+        * @param       string
+        * @param       string
+        * @return      void
+        */     
+       function set_error_delimiters($prefix = '<p>', $suffix = '</p>')
+       {
+               $this->_error_prefix = $prefix;
+               $this->_error_suffix = $suffix;
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Get Error Message
+        *
+        * Gets the error message associated with a particular field
+        *
+        * @access      public
+        * @param       string  the field name
+        * @return      void
+        */     
+       function error($field = '', $prefix = '', $suffix = '')
+       {       
+               if ( ! isset($this->_field_data[$field]['error']) OR $this->_field_data[$field]['error'] == '')
+               {
+                       return '';
+               }
+               
+               if ($prefix == '')
+               {
+                       $prefix = $this->_error_prefix;
+               }
+
+               if ($suffix == '')
+               {
+                       $suffix = $this->_error_suffix;
+               }
+
+               return $prefix.$this->_field_data[$field]['error'].$suffix;
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Error String
+        *
+        * Returns the error messages as a string, wrapped in the error delimiters
+        *
+        * @access      public
+        * @param       string
+        * @param       string
+        * @return      str
+        */     
+       function error_string($prefix = '', $suffix = '')
+       {
+               // No errrors, validation passes!
+               if (count($this->_error_array) === 0)
+               {
+                       return '';
+               }
+               
+               if ($prefix == '')
+               {
+                       $prefix = $this->_error_prefix;
+               }
+
+               if ($suffix == '')
+               {
+                       $suffix = $this->_error_suffix;
+               }
+               
+               // Generate the error string
+               $str = '';
+               foreach ($this->_error_array as $val)
+               {
+                       if ($val != '')
+                       {
+                               $str .= $prefix.$val.$suffix."\n";
+                       }
+               }
+               
+               return $str;
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Run the Validator
+        *
+        * This function does all the work.
+        *
+        * @access      public
+        * @return      bool
+        */             
+       function run($group = '')
+       {
+               // Do we even have any data to process?  Mm?
+               if (count($_POST) == 0)
+               {
+                       return FALSE;
+               }
+               
+               // Does the _field_data array containing the validation rules exist?
+               // If not, we look to see if they were assigned via a config file
+               if (count($this->_field_data) == 0)
+               {
+                       // No validation rules?  We're done...
+                       if (count($this->_config_rules) == 0)
+                       {
+                               return FALSE;
+                       }
+                       
+                       // Is there a validation rule for the particular URI being accessed?
+                       $uri = ($group == '') ? trim($this->CI->uri->ruri_string(), '/') : $group;
+                       
+                       if ($uri != '' AND isset($this->_config_rules[$uri]))
+                       {
+                               $this->set_rules($this->_config_rules[$uri]);
+                       }
+                       else
+                       {
+                               $this->set_rules($this->_config_rules);
+                       }
+       
+                       // We're we able to set the rules correctly?
+                       if (count($this->_field_data) == 0)
+                       {
+                               log_message('debug', "Unable to find validation rules");
+                               return FALSE;
+                       }
+               }
+       
+               // Load the language file containing error messages
+               $this->CI->lang->load('form_validation');
+                                                       
+               // Cycle through the rules for each field, match the 
+               // corresponding $_POST item and test for errors
+               foreach ($this->_field_data as $field => $row)
+               {               
+                       // Fetch the data from the corresponding $_POST array and cache it in the _field_data array.
+                       // Depending on whether the field name is an array or a string will determine where we get it from.
+                       
+                       if ($row['is_array'] == TRUE)
+                       {
+                               $this->_field_data[$field]['postdata'] = $this->_reduce_array($_POST, $row['keys']);
+                       }
+                       else
+                       {
+                               if (isset($_POST[$field]) AND $_POST[$field] != "")
+                               {
+                                       $this->_field_data[$field]['postdata'] = $_POST[$field];
+                               }
+                       }
+               
+                       $this->_execute($row, explode('|', $row['rules']), $this->_field_data[$field]['postdata']);             
+               }
+
+               // Did we end up with any errors?
+               $total_errors = count($this->_error_array);
+
+               if ($total_errors > 0)
+               {
+                       $this->_safe_form_data = TRUE;
+               }
+
+               // Now we need to re-set the POST data with the new, processed data
+               $this->_reset_post_array();
+               
+               // No errors, validation passes!
+               if ($total_errors == 0)
+               {
+                       return TRUE;
+               }
+
+               // Validation fails
+               return FALSE;
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Traverse a multidimensional $_POST array index until the data is found
+        *
+        * @access      private
+        * @param       array
+        * @param       array
+        * @param       integer
+        * @return      mixed
+        */             
+       function _reduce_array($array, $keys, $i = 0)
+       {
+               if (is_array($array))
+               {
+                       if (isset($keys[$i]))
+                       {
+                               if (isset($array[$keys[$i]]))
+                               {
+                                       $array = $this->_reduce_array($array[$keys[$i]], $keys, ($i+1));
+                               }
+                               else
+                               {
+                                       return NULL;
+                               }
+                       }
+                       else
+                       {
+                               return $array;
+                       }
+               }
+       
+               return $array;
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Re-populate the _POST array with our finalized and processed data
+        *
+        * @access      private
+        * @return      null
+        */             
+       function _reset_post_array()
+       {
+               foreach ($this->_field_data as $field => $row)
+               {
+                       if ( ! is_null($row['postdata']))
+                       {
+                               if ($row['is_array'] == FALSE)
+                               {
+                                       if (isset($_POST[$row['field']]))
+                                       {
+                                               $_POST[$row['field']] = $this->prep_for_form($row['postdata']);
+                                       }
+                               }
+                               else
+                               {
+                                       $post = '$_POST["';
+                                       
+                                       if (count($row['keys']) == 1)
+                                       {
+                                               $post .= current($row['keys']);
+                                               $post .= '"]';
+                                       }
+                                       else
+                                       {
+                                               $i = 0;
+                                               foreach ($row['keys'] as $val)
+                                               {
+                                                       if ($i == 0)
+                                                       {
+                                                               $post .= $val.'"]';
+                                                               $i++;
+                                                               continue;
+                                                       }
+                                               
+                                                       $post .= '["'.$val.'"]';
+                                               }
+                                       }
+                                       
+                                       if (is_array($row['postdata']))
+                                       {                                       
+                                               $array = array();
+                                               foreach ($row['postdata'] as $k => $v)
+                                               {
+                                                       $array[$k] = $this->prep_for_form($v);
+                                               }
+                                               
+                                               $post .= ' = $array;';
+                                       }
+                                       else
+                                       {                                               
+                                               $post .= ' = "'.$this->prep_for_form($row['postdata']).'";';
+                                       }
+
+                                       eval($post);
+                               }
+                       }
+               }
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Executes the Validation routines
+        *
+        * @access      private
+        * @param       array
+        * @param       array
+        * @param       mixed
+        * @param       integer
+        * @return      mixed
+        */     
+       function _execute($row, $rules, $postdata = NULL, $cycles = 0)
+       {
+               // If the $_POST data is an array we will run a recursive call
+               if (is_array($postdata))
+               { 
+                       foreach ($postdata as $key => $val)
+                       {
+                               $this->_execute($row, $rules, $val, $cycles);
+                               $cycles++;
+                       }
+                       
+                       return;
+               }
+               
+               // --------------------------------------------------------------------
+
+               // If the field is blank, but NOT required, no further tests are necessary
+               $callback = FALSE;
+               if ( ! in_array('required', $rules) AND is_null($postdata))
+               {
+                       // Before we bail out, does the rule contain a callback?
+                       if (preg_match("/(callback_\w+)/", implode(' ', $rules), $match))
+                       {
+                               $callback = TRUE;
+                               $rules = (array('1' => $match[1]));
+                       }
+                       else
+                       {
+                               return;
+                       }
+               }
+
+               // --------------------------------------------------------------------
+               
+               // Isset Test. Typically this rule will only apply to checkboxes.
+               if (is_null($postdata) AND $callback == FALSE)
+               {
+                       if (in_array('isset', $rules, TRUE) OR in_array('required', $rules))
+                       {
+                               // Set the message type
+                               $type = (in_array('required', $rules)) ? 'required' : 'isset';
+                       
+                               if ( ! isset($this->_error_messages[$type]))
+                               {
+                                       if (FALSE === ($line = $this->CI->lang->line($type)))
+                                       {
+                                               $line = 'The field was not set';
+                                       }                                                       
+                               }
+                               else
+                               {
+                                       $line = $this->_error_messages[$type];
+                               }
+                               
+                               // Build the error message
+                               $message = sprintf($line, $this->_translate_fieldname($row['label']));
+
+                               // Save the error message
+                               $this->_field_data[$row['field']]['error'] = $message;
+                               
+                               if ( ! isset($this->_error_array[$row['field']]))
+                               {
+                                       $this->_error_array[$row['field']] = $message;
+                               }
+                       }
+                                       
+                       return;
+               }
+
+               // --------------------------------------------------------------------
+
+               // Cycle through each rule and run it
+               foreach ($rules As $rule)
+               {
+                       $_in_array = FALSE;
+                       
+                       // We set the $postdata variable with the current data in our master array so that
+                       // each cycle of the loop is dealing with the processed data from the last cycle
+                       if ($row['is_array'] == TRUE AND is_array($this->_field_data[$row['field']]['postdata']))
+                       {
+                               // We shouldn't need this safety, but just in case there isn't an array index
+                               // associated with this cycle we'll bail out
+                               if ( ! isset($this->_field_data[$row['field']]['postdata'][$cycles]))
+                               {
+                                       continue;
+                               }
+                       
+                               $postdata = $this->_field_data[$row['field']]['postdata'][$cycles];
+                               $_in_array = TRUE;
+                       }
+                       else
+                       {
+                               $postdata = $this->_field_data[$row['field']]['postdata'];
+                       }
+
+                       // --------------------------------------------------------------------
+       
+                       // Is the rule a callback?                      
+                       $callback = FALSE;
+                       if (substr($rule, 0, 9) == 'callback_')
+                       {
+                               $rule = substr($rule, 9);
+                               $callback = TRUE;
+                       }
+                       
+                       // Strip the parameter (if exists) from the rule
+                       // Rules can contain a parameter: max_length[5]
+                       $param = FALSE;
+                       if (preg_match("/(.*?)\[(.*?)\]/", $rule, $match))
+                       {
+                               $rule   = $match[1];
+                               $param  = $match[2];
+                       }
+                       
+                       // Call the function that corresponds to the rule
+                       if ($callback === TRUE)
+                       {
+                               if ( ! method_exists($this->CI, $rule))
+                               {               
+                                       continue;
+                               }
+                               
+                               // Run the function and grab the result
+                               $result = $this->CI->$rule($postdata, $param);
+
+                               // Re-assign the result to the master data array
+                               if ($_in_array == TRUE)
+                               {
+                                       $this->_field_data[$row['field']]['postdata'][$cycles] = (is_bool($result)) ? $postdata : $result;
+                               }
+                               else
+                               {
+                                       $this->_field_data[$row['field']]['postdata'] = (is_bool($result)) ? $postdata : $result;
+                               }
+                       
+                               // If the field isn't required and we just processed a callback we'll move on...
+                               if ( ! in_array('required', $rules, TRUE) AND $result !== FALSE)
+                               {
+                                       return;
+                               }
+                       }
+                       else
+                       {                               
+                               if ( ! method_exists($this, $rule))
+                               {
+                                       // If our own wrapper function doesn't exist we see if a native PHP function does. 
+                                       // Users can use any native PHP function call that has one param.
+                                       if (function_exists($rule))
+                                       {
+                                               $result = $rule($postdata);
+                                                                                       
+                                               if ($_in_array == TRUE)
+                                               {
+                                                       $this->_field_data[$row['field']]['postdata'][$cycles] = (is_bool($result)) ? $postdata : $result;
+                                               }
+                                               else
+                                               {
+                                                       $this->_field_data[$row['field']]['postdata'] = (is_bool($result)) ? $postdata : $result;
+                                               }
+                                       }
+                                                                               
+                                       continue;
+                               }
+
+                               $result = $this->$rule($postdata, $param);
+
+                               if ($_in_array == TRUE)
+                               {
+                                       $this->_field_data[$row['field']]['postdata'][$cycles] = (is_bool($result)) ? $postdata : $result;
+                               }
+                               else
+                               {
+                                       $this->_field_data[$row['field']]['postdata'] = (is_bool($result)) ? $postdata : $result;
+                               }
+                       }
+                                                       
+                       // Did the rule test negatively?  If so, grab the error.
+                       if ($result === FALSE)
+                       {                       
+                               if ( ! isset($this->_error_messages[$rule]))
+                               {
+                                       if (FALSE === ($line = $this->CI->lang->line($rule)))
+                                       {
+                                               $line = 'Unable to access an error message corresponding to your field name.';
+                                       }                                               
+                               }
+                               else
+                               {
+                                       $line = $this->_error_messages[$rule];
+                               }
+
+                               // Build the error message
+                               $message = sprintf($line, $this->_translate_fieldname($row['label']), $param);
+
+                               // Save the error message
+                               $this->_field_data[$row['field']]['error'] = $message;
+                               
+                               if ( ! isset($this->_error_array[$row['field']]))
+                               {
+                                       $this->_error_array[$row['field']] = $message;
+                               }
+                               
+                               return;
+                       }
+               }
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Translate a field name
+        *
+        * @access      private
+        * @param       string  the field name
+        * @return      string
+        */     
+       function _translate_fieldname($fieldname)
+       {
+               // Do we need to translate the field name?
+               // We look for the prefix lang: to determine this
+               if (substr($fieldname, 0, 5) == 'lang:')
+               {
+                       // Grab the variable
+                       $line = substr($fieldname, 5);                  
+                       
+                       // Were we able to translate the field name?  If not we use $line
+                       if (FALSE === ($fieldname = $this->CI->lang->line($line)))
+                       {
+                               return $line;
+                       }
+               }
+
+               return $fieldname;
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Get the value from a form
+        *
+        * Permits you to repopulate a form field with the value it was submitted
+        * with, or, if that value doesn't exist, with the default
+        *
+        * @access      public
+        * @param       string  the field name
+        * @param       string
+        * @return      void
+        */     
+       function set_value($field = '', $default = '')
+       {
+               if ( ! isset($this->_field_data[$field]))
+               {
+                       return $default;
+               }
+               
+               return $this->_field_data[$field]['postdata'];
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Set Select
+        *
+        * Enables pull-down lists to be set to the value the user
+        * selected in the event of an error
+        *
+        * @access      public
+        * @param       string
+        * @param       string
+        * @return      string
+        */     
+       function set_select($field = '', $value = '', $default = FALSE)
+       {               
+               if ( ! isset($this->_field_data[$field]) OR ! isset($this->_field_data[$field]['postdata']))
+               {
+                       if ($default === TRUE AND count($this->_field_data) === 0)
+                       {
+                               return ' selected="selected"';
+                       }
+                       return '';
+               }
+       
+               $field = $this->_field_data[$field]['postdata'];
+               
+               if (is_array($field))
+               {
+                       if ( ! in_array($value, $field))
+                       {
+                               return '';
+                       }
+               }
+               else
+               {
+                       if (($field == '' OR $value == '') OR ($field != $value))
+                       {
+                               return '';
+                       }
+               }
+                       
+               return ' selected="selected"';
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Set Radio
+        *
+        * Enables radio buttons to be set to the value the user
+        * selected in the event of an error
+        *
+        * @access      public
+        * @param       string
+        * @param       string
+        * @return      string
+        */     
+       function set_radio($field = '', $value = '', $default = FALSE)
+       {
+               if ( ! isset($this->_field_data[$field]) OR ! isset($this->_field_data[$field]['postdata']))
+               {
+                       if ($default === TRUE AND count($this->_field_data) === 0)
+                       {
+                               return ' checked="checked"';
+                       }
+                       return '';
+               }
+       
+               $field = $this->_field_data[$field]['postdata'];
+               
+               if (is_array($field))
+               {
+                       if ( ! in_array($value, $field))
+                       {
+                               return '';
+                       }
+               }
+               else
+               {
+                       if (($field == '' OR $value == '') OR ($field != $value))
+                       {
+                               return '';
+                       }
+               }
+                       
+               return ' checked="checked"';
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Set Checkbox
+        *
+        * Enables checkboxes to be set to the value the user
+        * selected in the event of an error
+        *
+        * @access      public
+        * @param       string
+        * @param       string
+        * @return      string
+        */     
+       function set_checkbox($field = '', $value = '', $default = FALSE)
+       {
+               if ( ! isset($this->_field_data[$field]) OR ! isset($this->_field_data[$field]['postdata']))
+               {
+                       if ($default === TRUE AND count($this->_field_data) === 0)
+                       {
+                               return ' checked="checked"';
+                       }
+                       return '';
+               }
+       
+               $field = $this->_field_data[$field]['postdata'];
+               
+               if (is_array($field))
+               {
+                       if ( ! in_array($value, $field))
+                       {
+                               return '';
+                       }
+               }
+               else
+               {
+                       if (($field == '' OR $value == '') OR ($field != $value))
+                       {
+                               return '';
+                       }
+               }
+                       
+               return ' checked="checked"';
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Required
+        *
+        * @access      public
+        * @param       string
+        * @return      bool
+        */
+       function required($str)
+       {
+               if ( ! is_array($str))
+               {
+                       return (trim($str) == '') ? FALSE : TRUE;
+               }
+               else
+               {
+                       return ( ! empty($str));
+               }
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Match one field to another
+        *
+        * @access      public
+        * @param       string
+        * @param       field
+        * @return      bool
+        */
+       function matches($str, $field)
+       {
+               if ( ! isset($_POST[$field]))
+               {
+                       return FALSE;                           
+               }
+               
+               $field = $_POST[$field];
+
+               return ($str !== $field) ? FALSE : TRUE;
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Minimum Length
+        *
+        * @access      public
+        * @param       string
+        * @param       value
+        * @return      bool
+        */     
+       function min_length($str, $val)
+       {
+               if (preg_match("/[^0-9]/", $val))
+               {
+                       return FALSE;
+               }
+
+               if (function_exists('mb_strlen'))
+               {
+                       return (mb_strlen($str) < $val) ? FALSE : TRUE;         
+               }
+       
+               return (strlen($str) < $val) ? FALSE : TRUE;
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Max Length
+        *
+        * @access      public
+        * @param       string
+        * @param       value
+        * @return      bool
+        */     
+       function max_length($str, $val)
+       {
+               if (preg_match("/[^0-9]/", $val))
+               {
+                       return FALSE;
+               }
+
+               if (function_exists('mb_strlen'))
+               {
+                       return (mb_strlen($str) > $val) ? FALSE : TRUE;         
+               }
+       
+               return (strlen($str) > $val) ? FALSE : TRUE;
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Exact Length
+        *
+        * @access      public
+        * @param       string
+        * @param       value
+        * @return      bool
+        */     
+       function exact_length($str, $val)
+       {
+               if (preg_match("/[^0-9]/", $val))
+               {
+                       return FALSE;
+               }
+
+               if (function_exists('mb_strlen'))
+               {
+                       return (mb_strlen($str) != $val) ? FALSE : TRUE;                
+               }
+       
+               return (strlen($str) != $val) ? FALSE : TRUE;
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Valid Email
+        *
+        * @access      public
+        * @param       string
+        * @return      bool
+        */     
+       function valid_email($str)
+       {
+               return ( ! preg_match("/^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/ix", $str)) ? FALSE : TRUE;
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Valid Emails
+        *
+        * @access      public
+        * @param       string
+        * @return      bool
+        */     
+       function valid_emails($str)
+       {
+               if (strpos($str, ',') === FALSE)
+               {
+                       return $this->valid_email(trim($str));
+               }
+               
+               foreach(explode(',', $str) as $email)
+               {
+                       if (trim($email) != '' && $this->valid_email(trim($email)) === FALSE)
+                       {
+                               return FALSE;
+                       }
+               }
+               
+               return TRUE;
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Validate IP Address
+        *
+        * @access      public
+        * @param       string
+        * @return      string
+        */
+       function valid_ip($ip)
+       {
+               return $this->CI->input->valid_ip($ip);
+       }
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Alpha
+        *
+        * @access      public
+        * @param       string
+        * @return      bool
+        */             
+       function alpha($str)
+       {
+               return ( ! preg_match("/^([a-z])+$/i", $str)) ? FALSE : TRUE;
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Alpha-numeric
+        *
+        * @access      public
+        * @param       string
+        * @return      bool
+        */     
+       function alpha_numeric($str)
+       {
+               return ( ! preg_match("/^([a-z0-9])+$/i", $str)) ? FALSE : TRUE;
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Alpha-numeric with underscores and dashes
+        *
+        * @access      public
+        * @param       string
+        * @return      bool
+        */     
+       function alpha_dash($str)
+       {
+               return ( ! preg_match("/^([-a-z0-9_-])+$/i", $str)) ? FALSE : TRUE;
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Numeric
+        *
+        * @access      public
+        * @param       string
+        * @return      bool
+        */     
+       function numeric($str)
+       {
+               return (bool)preg_match( '/^[\-+]?[0-9]*\.?[0-9]+$/', $str);
+
+       }
+
+       // --------------------------------------------------------------------
+
+    /**
+     * Is Numeric
+     *
+     * @access    public
+     * @param    string
+     * @return    bool
+     */
+    function is_numeric($str)
+    {
+        return ( ! is_numeric($str)) ? FALSE : TRUE;
+    } 
+
+       // --------------------------------------------------------------------
+       
+       /**
+        * Integer
+        *
+        * @access      public
+        * @param       string
+        * @return      bool
+        */     
+       function integer($str)
+       {
+               return (bool)preg_match( '/^[\-+]?[0-9]+$/', $str);
+       }
+       
+       // --------------------------------------------------------------------
+
+    /**
+     * Is a Natural number  (0,1,2,3, etc.)
+     *
+     * @access public
+     * @param  string
+     * @return bool
+     */
+    function is_natural($str)
+    {   
+               return (bool)preg_match( '/^[0-9]+$/', $str);
+    }
+
+       // --------------------------------------------------------------------
+
+    /**
+     * Is a Natural number, but not a zero  (1,2,3, etc.)
+     *
+     * @access public
+     * @param  string
+     * @return bool
+     */
+       function is_natural_no_zero($str)
+    {
+       if ( ! preg_match( '/^[0-9]+$/', $str))
+       {
+               return FALSE;
+       }
+       
+       if ($str == 0)
+       {
+               return FALSE;
+       }
+    
+               return TRUE;
+    }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Valid Base64
+        *
+        * Tests a string for characters outside of the Base64 alphabet
+        * as defined by RFC 2045 http://www.faqs.org/rfcs/rfc2045
+        *
+        * @access      public
+        * @param       string
+        * @return      bool
+        */
+       function valid_base64($str)
+       {
+               return (bool) ! preg_match('/[^a-zA-Z0-9\/\+=]/', $str);
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Prep data for form
+        *
+        * This function allows HTML to be safely shown in a form.
+        * Special characters are converted.
+        *
+        * @access      public
+        * @param       string
+        * @return      string
+        */
+       function prep_for_form($data = '')
+       {
+               if (is_array($data))
+               {
+                       foreach ($data as $key => $val)
+                       {
+                               $data[$key] = $this->prep_for_form($val);
+                       }
+                       
+                       return $data;
+               }
+               
+               if ($this->_safe_form_data == FALSE OR $data === '')
+               {
+                       return $data;
+               }
+
+               return str_replace(array("'", '"', '<', '>'), array("&#39;", "&quot;", '&lt;', '&gt;'), stripslashes($data));
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Prep URL
+        *
+        * @access      public
+        * @param       string
+        * @return      string
+        */     
+       function prep_url($str = '')
+       {
+               if ($str == 'http://' OR $str == '')
+               {
+                       return '';
+               }
+               
+               if (substr($str, 0, 7) != 'http://' && substr($str, 0, 8) != 'https://')
+               {
+                       $str = 'http://'.$str;
+               }
+               
+               return $str;
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Strip Image Tags
+        *
+        * @access      public
+        * @param       string
+        * @return      string
+        */     
+       function strip_image_tags($str)
+       {
+               return $this->CI->input->strip_image_tags($str);
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * XSS Clean
+        *
+        * @access      public
+        * @param       string
+        * @return      string
+        */     
+       function xss_clean($str)
+       {
+               return $this->CI->input->xss_clean($str);
+       }
+       
+       // --------------------------------------------------------------------
+       
+       /**
+        * Convert PHP tags to entities
+        *
+        * @access      public
+        * @param       string
+        * @return      string
+        */     
+       function encode_php_tags($str)
+       {
+               return str_replace(array('<?php', '<?PHP', '<?', '?>'),  array('&lt;?php', '&lt;?PHP', '&lt;?', '?&gt;'), $str);
+       }
+
+}
+// END Form Validation Class
+
+/* End of file Form_validation.php */
 /* Location: ./system/libraries/Form_validation.php */
\ No newline at end of file