summaryrefslogtreecommitdiffstats
path: root/system/core/Input.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2011-01-19 13:31:47 +0100
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-01-19 13:31:47 +0100
commitc3828718925a0f1660cddadc95b63e14f7189faa (patch)
tree236d6b36df9c70f718c856bf7320d6ad210356d7 /system/core/Input.php
parent8af74554043be56daa9fb278e60ee79a53be4b76 (diff)
Reverted regex validation while we re-think the implementation, and added ->input->is_cli_request();
Diffstat (limited to 'system/core/Input.php')
-rw-r--r--system/core/Input.php18
1 files changed, 16 insertions, 2 deletions
diff --git a/system/core/Input.php b/system/core/Input.php
index eb2048e58..3a52e37aa 100644
--- a/system/core/Input.php
+++ b/system/core/Input.php
@@ -618,19 +618,33 @@ class CI_Input {
}
// --------------------------------------------------------------------
-
+
/**
* Is ajax Request?
*
* Test to see if a request contains the HTTP_X_REQUESTED_WITH header
*
- * @return boolean
+ * @return boolean
*/
public function is_ajax_request()
{
return ($this->server('HTTP_X_REQUESTED_WITH') === 'XMLHttpRequest');
}
+ // --------------------------------------------------------------------
+
+ /**
+ * Is cli Request?
+ *
+ * Test to see if a request was made from the command line
+ *
+ * @return boolean
+ */
+ public function is_cli_request()
+ {
+ return (bool) defined('STDIN');
+ }
+
}
// END Input class