- Added BSInput::getHttpMethod()
return $array;
}
+ // ###################################################################
+ /**
+ * Returns the lowercase version of the HTTP method (post or get)
+ *
+ * @return string HTTP method
+ */
+ public function getHttpMethod()
+ {
+ $method = strtolower($_SERVER['REQUEST_METHOD']);
+ if (!in_array($method, array('get', 'post')))
+ {
+ trigger_error('Invalid server request method: ' . $method);
+ }
+ return $method;
+ }
+
// ###################################################################
/**
* Checks to see if a POST refer is actually from us
$this->params = $params;
}
+ // ###################################################################
+ /**
+ * Does nothing if the request was sent via POST, and triggers an
+ * error if it was not
+ */
+ protected function _verifyPostRequest()
+ {
+ if ($this->params->getHttpMethod() != 'post')
+ {
+ trigger_error('Action is intended to be executed from a POST request');
+ }
+ }
+
/**
* The default action (index)
*/