summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authornisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in>2013-03-25 19:12:36 +0100
committernisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in>2013-03-25 19:12:36 +0100
commit77236e055234cbbc9f6ca6be472c70077a1f5856 (patch)
treeef91b1b78aa5bd4dac90737af0f8611f6a9bdbf2 /system
parent7b1a2f1f40d940dde34e47b36808a84e0353af56 (diff)
Simplified notation parsing and other cosmetic fixes
Diffstat (limited to 'system')
-rw-r--r--system/core/Input.php47
-rw-r--r--system/helpers/form_helper.php34
2 files changed, 18 insertions, 63 deletions
diff --git a/system/core/Input.php b/system/core/Input.php
index 6ee132005..d707fe25c 100644
--- a/system/core/Input.php
+++ b/system/core/Input.php
@@ -153,53 +153,38 @@ class CI_Input {
*/
protected function _fetch_from_array(&$array, $index = '', $xss_clean = FALSE)
{
- $value = NULL;
-
if (isset($array[$index]))
{
$value = $array[$index];
}
- elseif(preg_match('/\[[^]]*\]$/', $index)) // Does the index contain array notation
+ elseif (($count = preg_match_all('/(?:^[^\[]+)|\[[^]]*\]/', $index, $matches)) > 1) // Does the index contain array notation
{
- $key = $index;
$container = $array;
-
- // Test if the $index is an array name, and try to obtain the final index
- if (preg_match_all('/\[(.*?)\]/', $index, $matches))
+ for ($i = 0; $i < $count; $i++)
{
- sscanf($index, '%[^[][', $key);
- for ($i = 0, $c = count($matches[0]); $i < $c; $i++)
+ $key = trim($matches[0][$i], '[]');
+ if($key === '') // The array notation will return the value as array
{
- if($matches[1][$i] === '') // The array notation will return the value as array
- {
- break;
- }
- if (isset($container[$key]))
- {
- $container = $container[$key];
- $key = $matches[1][$i];
- }
- else
- {
- $container = array();
- break;
- }
+ break;
}
-
- // Check if the deepest container has the field
- if(isset($container[$key]))
+ if (isset($container[$key]))
+ {
+ $value = $container = $container[$key];
+ }
+ else
{
- $value = $container[$key];
+ return NULL;
}
}
}
-
- if ($xss_clean === TRUE)
+ else
{
- return $this->security->xss_clean($value);
+ return NULL;
}
- return $value;
+ return ($xss_clean === TRUE)
+ ? $this->security->xss_clean($value)
+ : $value;
}
// --------------------------------------------------------------------
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php
index 2238af92a..443a06a2d 100644
--- a/system/helpers/form_helper.php
+++ b/system/helpers/form_helper.php
@@ -647,7 +647,8 @@ if ( ! function_exists('set_value'))
return form_prep($OBJ->set_value($field, $default), $is_textarea);
}
- if (FALSE !== ($OBJ =& _get_input_object()) && ($value = $OBJ->post($field, FALSE)))
+ $CI =& get_instance();
+ if (NULL !== ($value = $CI->input->post($field, FALSE)))
{
return form_prep($value, $is_textarea);
}
@@ -1007,36 +1008,5 @@ if ( ! function_exists('_get_validation_object'))
}
}
-// ------------------------------------------------------------------------
-
-if ( ! function_exists('_get_input_object'))
-{
- /**
- * Input Object
- *
- * Fetches the input object
- *
- * @return mixed
- */
- function &_get_input_object()
- {
- $CI =& get_instance();
-
- // We set this as a variable since we're returning by reference.
- $return = FALSE;
-
- if ( ! isset($CI->input) OR ! is_object($CI->input))
- {
- return $return;
- }
- else
- {
- $return = $CI->input;
- }
-
- return $return;
- }
-}
-
/* End of file form_helper.php */
/* Location: ./system/helpers/form_helper.php */ \ No newline at end of file