@@ -16,8 +16,8 @@ |
||
| 16 | 16 | use Cake\Routing\Router; |
| 17 | 17 | use Cake\Routing\RouteBuilder; |
| 18 | 18 | |
| 19 | -Router::plugin('Core', ['path' => '/'], function (RouteBuilder $routeBuilder) { |
|
| 20 | - $routeBuilder->prefix('admin', function (RouteBuilder $routeBuilder) { |
|
| 19 | +Router::plugin('Core', ['path' => '/'], function(RouteBuilder $routeBuilder) { |
|
| 20 | + $routeBuilder->prefix('admin', function(RouteBuilder $routeBuilder) { |
|
| 21 | 21 | $routeBuilder->connect('/:controller/:action/*', []); |
| 22 | 22 | $routeBuilder->connect('/', ['controller' => 'Root', 'action' => 'dashboard']); |
| 23 | 23 | }); |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | * Merge configure values by key. |
| 50 | 50 | * |
| 51 | 51 | * @param string $key |
| 52 | - * @param array|string $config |
|
| 52 | + * @param string $config |
|
| 53 | 53 | * @return array|mixed |
| 54 | 54 | */ |
| 55 | 55 | public static function mergeConfig($key, $config) |
@@ -68,11 +68,11 @@ |
||
| 68 | 68 | */ |
| 69 | 69 | protected function _initialize() |
| 70 | 70 | { |
| 71 | - $this['path'] = function () { |
|
| 71 | + $this['path'] = function() { |
|
| 72 | 72 | return $this->_initPaths(); |
| 73 | 73 | }; |
| 74 | 74 | |
| 75 | - $this['helper'] = function () { |
|
| 75 | + $this['helper'] = function() { |
|
| 76 | 76 | return new HelperManager(); |
| 77 | 77 | }; |
| 78 | 78 | } |
@@ -106,7 +106,7 @@ |
||
| 106 | 106 | $id = (string) $id; |
| 107 | 107 | if (class_exists($className)) { |
| 108 | 108 | self::$_loaded[$id] = $className; |
| 109 | - $this[$id] = function () use ($className) { |
|
| 109 | + $this[$id] = function() use ($className) { |
|
| 110 | 110 | return new $className(); |
| 111 | 111 | }; |
| 112 | 112 | } else { |
@@ -144,7 +144,7 @@ |
||
| 144 | 144 | continue; |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - $files[] = $prefix.$file; |
|
| 147 | + $files[] = $prefix . $file; |
|
| 148 | 148 | } |
| 149 | 149 | } |
| 150 | 150 | } |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | * @param array|string $key |
| 61 | 61 | * @param null|mixed $value |
| 62 | 62 | * @param bool $merge |
| 63 | - * @return mixed |
|
| 63 | + * @return MoveComponent |
|
| 64 | 64 | * @throws \Cake\Core\Exception\Exception When trying to set a key that is invalid. |
| 65 | 65 | */ |
| 66 | 66 | public function setConfig($key, $value = null, $merge = true) |
@@ -159,11 +159,11 @@ |
||
| 159 | 159 | |
| 160 | 160 | $classes = [ |
| 161 | 161 | $prefix, |
| 162 | - 'theme-' . Str::low($this->_View->theme), |
|
| 163 | - 'plugin-' . Str::low($this->_View->plugin), |
|
| 164 | - 'view-' . Str::low($this->_View->name), |
|
| 165 | - 'tmpl-' . Str::low($this->_View->template), |
|
| 166 | - 'layout-' . Str::low($this->_View->layout) |
|
| 162 | + 'theme-' . Str::low($this->_View->theme), |
|
| 163 | + 'plugin-' . Str::low($this->_View->plugin), |
|
| 164 | + 'view-' . Str::low($this->_View->name), |
|
| 165 | + 'tmpl-' . Str::low($this->_View->template), |
|
| 166 | + 'layout-' . Str::low($this->_View->layout) |
|
| 167 | 167 | ]; |
| 168 | 168 | |
| 169 | 169 | $pass = (array) $this->request->getParam('pass'); |
@@ -69,8 +69,8 @@ |
||
| 69 | 69 | /** |
| 70 | 70 | * Add new value in list. |
| 71 | 71 | * |
| 72 | - * @param string|int $key |
|
| 73 | - * @param string|int $val |
|
| 72 | + * @param string $key |
|
| 73 | + * @param string $val |
|
| 74 | 74 | * @return $this |
| 75 | 75 | */ |
| 76 | 76 | public function set($key, $val) |
@@ -92,11 +92,11 @@ discard block |
||
| 92 | 92 | $isMaterializeCss = $this->getConfig('materializeCss', false); |
| 93 | 93 | |
| 94 | 94 | if ($isMaterializeCss === true) { |
| 95 | - $this->_configWrite('prepareBtnClass', function (Helper $form, $options, $button) { |
|
| 95 | + $this->_configWrite('prepareBtnClass', function(Helper $form, $options, $button) { |
|
| 96 | 96 | return $this->_prepareBtn($form, $options, $button); |
| 97 | 97 | }); |
| 98 | 98 | |
| 99 | - $this->_configWrite('prepareTooltip', function (Helper $html, $options, $tooltip) { |
|
| 99 | + $this->_configWrite('prepareTooltip', function(Helper $html, $options, $tooltip) { |
|
| 100 | 100 | return $this->_prepareTooltip($html, $options, $tooltip); |
| 101 | 101 | }); |
| 102 | 102 | } |
@@ -288,7 +288,7 @@ discard block |
||
| 288 | 288 | 'entity' => $entity, |
| 289 | 289 | ], $data); |
| 290 | 290 | |
| 291 | - return $this->_View->element('Core.' . __FUNCTION__, $data); |
|
| 291 | + return $this->_View->element('Core.' . __FUNCTION__, $data); |
|
| 292 | 292 | } |
| 293 | 293 | |
| 294 | 294 | /** |
@@ -84,10 +84,10 @@ discard block |
||
| 84 | 84 | 'checkbox' => 'Core\View\Widget\MaterializeCss\CheckboxWidget' |
| 85 | 85 | ]) |
| 86 | 86 | ->set('templates', 'Core.templates/materialize_css_form') |
| 87 | - ->set('prepareBtnClass', function (Helper $form, $options, $button) { |
|
| 87 | + ->set('prepareBtnClass', function(Helper $form, $options, $button) { |
|
| 88 | 88 | return $this->_prepareBtn($form, $options, $button); |
| 89 | 89 | }) |
| 90 | - ->set('prepareTooltip', function (Helper $html, $options, $tooltip) { |
|
| 90 | + ->set('prepareTooltip', function(Helper $html, $options, $tooltip) { |
|
| 91 | 91 | return $this->_prepareTooltip($html, $options, $tooltip); |
| 92 | 92 | }); |
| 93 | 93 | } |
@@ -264,7 +264,7 @@ discard block |
||
| 264 | 264 | */ |
| 265 | 265 | protected function _addDefaultContextProviders() |
| 266 | 266 | { |
| 267 | - $this->addContextProvider('orm', function ($request, $data) { |
|
| 267 | + $this->addContextProvider('orm', function($request, $data) { |
|
| 268 | 268 | if (is_array($data['entity']) || $data['entity'] instanceof \Traversable) { |
| 269 | 269 | $pass = (new Collection($data['entity']))->first() !== null; |
| 270 | 270 | if ($pass) { |
@@ -304,7 +304,7 @@ discard block |
||
| 304 | 304 | */ |
| 305 | 305 | protected function _addFormArrayProvider() |
| 306 | 306 | { |
| 307 | - $this->addContextProvider('array', function ($request, $data) { |
|
| 307 | + $this->addContextProvider('array', function($request, $data) { |
|
| 308 | 308 | if (is_array($data['entity']) && isset($data['entity']['schema'])) { |
| 309 | 309 | return new ArrayContext($request, $data['entity']); |
| 310 | 310 | } |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | */ |
| 319 | 319 | protected function _addFormContextProvider() |
| 320 | 320 | { |
| 321 | - $this->addContextProvider('form', function ($request, $data) { |
|
| 321 | + $this->addContextProvider('form', function($request, $data) { |
|
| 322 | 322 | if ($data['entity'] instanceof Form) { |
| 323 | 323 | return new FormContext($request, $data); |
| 324 | 324 | } |