Welcome Guest, Not a member yet? Register   Sign In
Form Validation (Twice)
#10

[eluser]Unknown[/eluser]
Hi,

I had the same problem today, and I made a very quick fix (Surely there is another more fashionable method).

I extended CI_Form_validation class, and I set my version of run method:

---------------------------------------------------------------------------------------

Code:
function run($group = '', $use_only_group = false)
    {
        // Do we even have any data to process?  Mm?
        if (count($_POST) == 0)
        {
            return FALSE;
        }
        
        if ($use_only_group) {
            // If user tells to use explicitly use
            // configuration from argument, then
            // don't reuse last configuration
            $this->_field_data = array();
        }      
        // 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;
    }


Messages In This Thread
Form Validation (Twice) - by El Forum - 02-06-2009, 04:51 PM
Form Validation (Twice) - by El Forum - 02-06-2009, 05:54 PM
Form Validation (Twice) - by El Forum - 02-06-2009, 05:57 PM
Form Validation (Twice) - by El Forum - 02-06-2009, 06:06 PM
Form Validation (Twice) - by El Forum - 02-06-2009, 06:15 PM
Form Validation (Twice) - by El Forum - 02-06-2009, 06:20 PM
Form Validation (Twice) - by El Forum - 02-06-2009, 07:33 PM
Form Validation (Twice) - by El Forum - 02-07-2009, 02:30 PM
Form Validation (Twice) - by El Forum - 02-12-2009, 12:08 AM
Form Validation (Twice) - by El Forum - 02-13-2009, 08:58 AM



Theme © iAndrew 2016 - Forum software by © MyBB