mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Deprecate features in SecurityComponent
These features are available in CakeRequest now. The CakeRequest version is improved as it raises more appropriate exceptions.
This commit is contained in:
parent
74b9cdb36f
commit
e4110b1e01
1 changed files with 11 additions and 1 deletions
|
@ -49,6 +49,7 @@ class SecurityComponent extends Component {
|
|||
* List of controller actions for which a POST request is required
|
||||
*
|
||||
* @var array
|
||||
* @deprecated Use CakeRequest::onlyAllow() instead.
|
||||
* @see SecurityComponent::requirePost()
|
||||
*/
|
||||
public $requirePost = array();
|
||||
|
@ -57,6 +58,7 @@ class SecurityComponent extends Component {
|
|||
* List of controller actions for which a GET request is required
|
||||
*
|
||||
* @var array
|
||||
* @deprecated Use CakeRequest::onlyAllow() instead.
|
||||
* @see SecurityComponent::requireGet()
|
||||
*/
|
||||
public $requireGet = array();
|
||||
|
@ -65,6 +67,7 @@ class SecurityComponent extends Component {
|
|||
* List of controller actions for which a PUT request is required
|
||||
*
|
||||
* @var array
|
||||
* @deprecated Use CakeRequest::onlyAllow() instead.
|
||||
* @see SecurityComponent::requirePut()
|
||||
*/
|
||||
public $requirePut = array();
|
||||
|
@ -73,6 +76,7 @@ class SecurityComponent extends Component {
|
|||
* List of controller actions for which a DELETE request is required
|
||||
*
|
||||
* @var array
|
||||
* @deprecated Use CakeRequest::onlyAllow() instead.
|
||||
* @see SecurityComponent::requireDelete()
|
||||
*/
|
||||
public $requireDelete = array();
|
||||
|
@ -131,7 +135,9 @@ class SecurityComponent extends Component {
|
|||
public $unlockedFields = array();
|
||||
|
||||
/**
|
||||
* Actions to exclude from any security checks
|
||||
* Actions to exclude from CSRF and POST validation checks.
|
||||
* Other checks like requireAuth(), requireSecure(),
|
||||
* requirePost(), requireGet() etc. will still be applied.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
|
@ -248,6 +254,7 @@ class SecurityComponent extends Component {
|
|||
* Sets the actions that require a POST request, or empty for all actions
|
||||
*
|
||||
* @return void
|
||||
* @deprecated Use CakeRequest::onlyAllow() instead.
|
||||
* @link http://book.cakephp.org/2.0/en/core-libraries/components/security-component.html#SecurityComponent::requirePost
|
||||
*/
|
||||
public function requirePost() {
|
||||
|
@ -258,6 +265,7 @@ class SecurityComponent extends Component {
|
|||
/**
|
||||
* Sets the actions that require a GET request, or empty for all actions
|
||||
*
|
||||
* @deprecated Use CakeRequest::onlyAllow() instead.
|
||||
* @return void
|
||||
*/
|
||||
public function requireGet() {
|
||||
|
@ -268,6 +276,7 @@ class SecurityComponent extends Component {
|
|||
/**
|
||||
* Sets the actions that require a PUT request, or empty for all actions
|
||||
*
|
||||
* @deprecated Use CakeRequest::onlyAllow() instead.
|
||||
* @return void
|
||||
*/
|
||||
public function requirePut() {
|
||||
|
@ -278,6 +287,7 @@ class SecurityComponent extends Component {
|
|||
/**
|
||||
* Sets the actions that require a DELETE request, or empty for all actions
|
||||
*
|
||||
* @deprecated Use CakeRequest::onlyAllow() instead.
|
||||
* @return void
|
||||
*/
|
||||
public function requireDelete() {
|
||||
|
|
Loading…
Reference in a new issue