1 | <?php |
||
14 | class Request extends \yii\web\Request |
||
15 | { |
||
16 | public $checksumParam = '_checksum'; |
||
17 | public $enableChecksumValidation = true; |
||
18 | public $attachBehaviorViewBehaviour = true; |
||
19 | public $checksumKey; |
||
20 | |||
21 | /** |
||
22 | * @throws InvalidConfigException |
||
23 | */ |
||
24 | public function init() |
||
34 | |||
35 | /** |
||
36 | * @return bool |
||
37 | */ |
||
38 | public function checksumIsEnabled() |
||
42 | |||
43 | /** |
||
44 | * @param null $clientSuppliedToken |
||
45 | * @return bool |
||
46 | */ |
||
47 | public function validateCsrfToken($clientSuppliedToken = null) |
||
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | protected function getStackKey() |
||
67 | |||
68 | /** |
||
69 | * @param $widgetId |
||
70 | * @param $stack |
||
71 | * @return string |
||
72 | */ |
||
73 | public function setStack($stack) |
||
82 | |||
83 | /** |
||
84 | * @return mixed |
||
85 | */ |
||
86 | public function clearStack() |
||
90 | |||
91 | /** |
||
92 | * @return mixed |
||
93 | */ |
||
94 | public function getStack() |
||
98 | |||
99 | /** |
||
100 | * @param $checksum |
||
101 | * @return array |
||
102 | */ |
||
103 | public function getStackByChecksum($checksum) |
||
107 | } |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.