@@ -83,7 +83,7 @@ |
||
| 83 | 83 | */ |
| 84 | 84 | public function url($route, array $params = [], $scheme = false) |
| 85 | 85 | { |
| 86 | - trigger_error('Deprecated since 1.0.0-RC3 use \luya\helpers\Url::toRoute instead. Will be removed in 1.0.0', E_USER_DEPRECATED); |
|
| 86 | + trigger_error('Deprecated since 1.0.0-RC3 use \luya\helpers\Url::toRoute instead. Will be removed in 1.0.0', E_USER_DEPRECATED); |
|
| 87 | 87 | $routeParams = [$route]; |
| 88 | 88 | foreach ($params as $key => $value) { |
| 89 | 89 | $routeParams[$key] = $value; |
@@ -12,25 +12,25 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | trait RegistryTrait |
| 14 | 14 | { |
| 15 | - /** |
|
| 16 | - * Determines what attribute field in the corresponding model table should be used to find the identifier key. |
|
| 17 | - * |
|
| 18 | - * @return string The name attribute field defaults to `name`. |
|
| 19 | - */ |
|
| 20 | - public static function getNameAttribute() |
|
| 21 | - { |
|
| 22 | - return 'name'; |
|
| 23 | - } |
|
| 15 | + /** |
|
| 16 | + * Determines what attribute field in the corresponding model table should be used to find the identifier key. |
|
| 17 | + * |
|
| 18 | + * @return string The name attribute field defaults to `name`. |
|
| 19 | + */ |
|
| 20 | + public static function getNameAttribute() |
|
| 21 | + { |
|
| 22 | + return 'name'; |
|
| 23 | + } |
|
| 24 | 24 | |
| 25 | - /** |
|
| 26 | - * Determines what attribute field in the corresponding model table should be used to store the identifier key and retrieve its data. |
|
| 27 | - * |
|
| 28 | - * @return string The value attribute field defaults to `value`. |
|
| 29 | - */ |
|
| 30 | - public static function getValueAttribute() |
|
| 31 | - { |
|
| 32 | - return 'value'; |
|
| 33 | - } |
|
| 25 | + /** |
|
| 26 | + * Determines what attribute field in the corresponding model table should be used to store the identifier key and retrieve its data. |
|
| 27 | + * |
|
| 28 | + * @return string The value attribute field defaults to `value`. |
|
| 29 | + */ |
|
| 30 | + public static function getValueAttribute() |
|
| 31 | + { |
|
| 32 | + return 'value'; |
|
| 33 | + } |
|
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | 36 | * Check whether a config value exists or not |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | public static function search(array $array, $searchText, $sensitive = false) |
| 97 | 97 | { |
| 98 | 98 | $function = ($sensitive) ? 'strpos' : 'stripos'; |
| 99 | - return array_filter($array, function ($item) use ($searchText, $function) { |
|
| 99 | + return array_filter($array, function($item) use ($searchText, $function) { |
|
| 100 | 100 | $response = false; |
| 101 | 101 | foreach ($item as $key => $value) { |
| 102 | 102 | if ($response) { |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | { |
| 139 | 139 | $columns = array_column($array, $column); |
| 140 | 140 | $key = array_search($search, $columns); |
| 141 | - return ($key !== false) ? $array[$key] : false; |
|
| 141 | + return ($key !== false) ? $array[$key] : false; |
|
| 142 | 142 | } |
| 143 | 143 | |
| 144 | 144 | /** |
@@ -68,7 +68,7 @@ |
||
| 68 | 68 | if ($module instanceof AdminModuleInterface) { |
| 69 | 69 | $this->_adminAssets = ArrayHelper::merge($module->getAdminAssets(), $this->_adminAssets); |
| 70 | 70 | if ($module->getMenu()) { |
| 71 | - $this->_adminMenus[$module->id] = $module->getMenu(); |
|
| 71 | + $this->_adminMenus[$module->id] = $module->getMenu(); |
|
| 72 | 72 | } |
| 73 | 73 | $this->_jsTranslations[$id] = $module->getJsTranslationMessages(); |
| 74 | 74 | } |
@@ -43,41 +43,41 @@ |
||
| 43 | 43 | */ |
| 44 | 44 | class RobotsFilter extends ActionFilter |
| 45 | 45 | { |
| 46 | - public $delay = 2.5; |
|
| 46 | + public $delay = 2.5; |
|
| 47 | 47 | |
| 48 | - const ROBOTS_FILTER_SESSION_IDENTIFIER = '__robotsFilterRenderTime'; |
|
| 48 | + const ROBOTS_FILTER_SESSION_IDENTIFIER = '__robotsFilterRenderTime'; |
|
| 49 | 49 | |
| 50 | - private function getRenderTime() |
|
| 51 | - { |
|
| 52 | - return Yii::$app->session->get(self::ROBOTS_FILTER_SESSION_IDENTIFIER, time()); |
|
| 53 | - } |
|
| 50 | + private function getRenderTime() |
|
| 51 | + { |
|
| 52 | + return Yii::$app->session->get(self::ROBOTS_FILTER_SESSION_IDENTIFIER, time()); |
|
| 53 | + } |
|
| 54 | 54 | |
| 55 | - private function setRenderTime($time) |
|
| 56 | - { |
|
| 57 | - Yii::$app->session->set(self::ROBOTS_FILTER_SESSION_IDENTIFIER, $time); |
|
| 58 | - } |
|
| 55 | + private function setRenderTime($time) |
|
| 56 | + { |
|
| 57 | + Yii::$app->session->set(self::ROBOTS_FILTER_SESSION_IDENTIFIER, $time); |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | 60 | |
| 61 | - private function getElapsedProcessTime() |
|
| 62 | - { |
|
| 63 | - return (int) (time() - $this->getRenderTime()); |
|
| 64 | - } |
|
| 61 | + private function getElapsedProcessTime() |
|
| 62 | + { |
|
| 63 | + return (int) (time() - $this->getRenderTime()); |
|
| 64 | + } |
|
| 65 | 65 | |
| 66 | - public function beforeAction($action) |
|
| 67 | - { |
|
| 68 | - if (Yii::$app->request->isPost) { |
|
| 69 | - if ($this->getElapsedProcessTime() < $this->delay) { |
|
| 70 | - throw new InvalidCallException("Robots Filter has detected an invalid Request: " . VarDumper::export(Yii::$app->request->post())); |
|
| 71 | - } |
|
| 72 | - } |
|
| 66 | + public function beforeAction($action) |
|
| 67 | + { |
|
| 68 | + if (Yii::$app->request->isPost) { |
|
| 69 | + if ($this->getElapsedProcessTime() < $this->delay) { |
|
| 70 | + throw new InvalidCallException("Robots Filter has detected an invalid Request: " . VarDumper::export(Yii::$app->request->post())); |
|
| 71 | + } |
|
| 72 | + } |
|
| 73 | 73 | |
| 74 | - return true; |
|
| 75 | - } |
|
| 74 | + return true; |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | - public function afterAction($action, $result) |
|
| 78 | - { |
|
| 79 | - $this->setRenderTime(time()); |
|
| 77 | + public function afterAction($action, $result) |
|
| 78 | + { |
|
| 79 | + $this->setRenderTime(time()); |
|
| 80 | 80 | |
| 81 | - return $result; |
|
| 82 | - } |
|
| 81 | + return $result; |
|
| 82 | + } |
|
| 83 | 83 | } |
| 84 | 84 | \ No newline at end of file |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | { |
| 68 | 68 | if (Yii::$app->request->isPost) { |
| 69 | 69 | if ($this->getElapsedProcessTime() < $this->delay) { |
| 70 | - throw new InvalidCallException("Robots Filter has detected an invalid Request: " . VarDumper::export(Yii::$app->request->post())); |
|
| 70 | + throw new InvalidCallException("Robots Filter has detected an invalid Request: ".VarDumper::export(Yii::$app->request->post())); |
|
| 71 | 71 | } |
| 72 | 72 | } |
| 73 | 73 | |