We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | $column = ['name' => $column]; |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - if (is_array($column) && ! isset($column['name'])) { |
|
| 52 | + if (is_array($column) && !isset($column['name'])) { |
|
| 53 | 53 | $column['name'] = 'anonymous_column_'.Str::random(5); |
| 54 | 54 | } |
| 55 | 55 | |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | protected function makeSureColumnHasLabel($column) |
| 67 | 67 | { |
| 68 | - if (! isset($column['label'])) { |
|
| 68 | + if (!isset($column['label'])) { |
|
| 69 | 69 | $column['label'] = mb_ucfirst($this->makeLabel($column['name'])); |
| 70 | 70 | } |
| 71 | 71 | |
@@ -82,11 +82,11 @@ discard block |
||
| 82 | 82 | { |
| 83 | 83 | $could_be_relation = isset($column['entity']) && $column['entity'] !== false; |
| 84 | 84 | |
| 85 | - if (! isset($column['type']) && $could_be_relation) { |
|
| 85 | + if (!isset($column['type']) && $could_be_relation) { |
|
| 86 | 86 | $column['type'] = 'relationship'; |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - if (! isset($column['type'])) { |
|
| 89 | + if (!isset($column['type'])) { |
|
| 90 | 90 | $column['type'] = 'text'; |
| 91 | 91 | } |
| 92 | 92 | |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | */ |
| 104 | 104 | protected function makeSureColumnHasKey($column) |
| 105 | 105 | { |
| 106 | - if (! isset($column['key'])) { |
|
| 106 | + if (!isset($column['key'])) { |
|
| 107 | 107 | $column['key'] = str_replace('.', '__', $column['name']); |
| 108 | 108 | } |
| 109 | 109 | |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | */ |
| 122 | 122 | protected function makeSureColumnHasWrapper($column) |
| 123 | 123 | { |
| 124 | - if (! isset($column['wrapper'])) { |
|
| 124 | + if (!isset($column['wrapper'])) { |
|
| 125 | 125 | $column['wrapper'] = []; |
| 126 | 126 | } |
| 127 | 127 | |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | { |
| 186 | 186 | // if this is a relation type field and no corresponding model was specified, |
| 187 | 187 | // get it from the relation method defined in the main model |
| 188 | - if (isset($column['entity']) && $column['entity'] !== false && ! isset($column['model'])) { |
|
| 188 | + if (isset($column['entity']) && $column['entity'] !== false && !isset($column['model'])) { |
|
| 189 | 189 | $column['model'] = $this->getRelationModel($column['entity']); |
| 190 | 190 | } |
| 191 | 191 | |
@@ -206,8 +206,7 @@ discard block |
||
| 206 | 206 | $columnsArray = $this->columns(); |
| 207 | 207 | |
| 208 | 208 | if (array_key_exists($targetColumnName, $columnsArray)) { |
| 209 | - $targetColumnPosition = $before ? array_search($targetColumnName, array_keys($columnsArray)) : |
|
| 210 | - array_search($targetColumnName, array_keys($columnsArray)) + 1; |
|
| 209 | + $targetColumnPosition = $before ? array_search($targetColumnName, array_keys($columnsArray)) : array_search($targetColumnName, array_keys($columnsArray)) + 1; |
|
| 211 | 210 | |
| 212 | 211 | $element = array_pop($columnsArray); |
| 213 | 212 | $beginningPart = array_slice($columnsArray, 0, $targetColumnPosition, true); |
@@ -230,7 +229,7 @@ discard block |
||
| 230 | 229 | { |
| 231 | 230 | static $cache = []; |
| 232 | 231 | |
| 233 | - if (! $this->driverIsSql()) { |
|
| 232 | + if (!$this->driverIsSql()) { |
|
| 234 | 233 | return true; |
| 235 | 234 | } |
| 236 | 235 | |
@@ -46,8 +46,8 @@ discard block |
||
| 46 | 46 | // otherwise assume the arguments are actually the configuration array |
| 47 | 47 | $config = []; |
| 48 | 48 | |
| 49 | - if (! is_array($arg)) { |
|
| 50 | - if (! class_exists($arg)) { |
|
| 49 | + if (!is_array($arg)) { |
|
| 50 | + if (!class_exists($arg)) { |
|
| 51 | 51 | return response()->json(['error' => 'Class: '.$arg.' does not exists'], 500); |
| 52 | 52 | } |
| 53 | 53 | $config['model'] = $arg; |
@@ -77,8 +77,7 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | if ($search_string === false) { |
| 79 | 79 | return ($config['paginate'] !== false) ? |
| 80 | - $config['query']->paginate($config['paginate']) : |
|
| 81 | - $config['query']->get(); |
|
| 80 | + $config['query']->paginate($config['paginate']) : $config['query']->get(); |
|
| 82 | 81 | } |
| 83 | 82 | |
| 84 | 83 | $textColumnTypes = ['string', 'json_string', 'text', 'longText', 'json_array', 'json']; |
@@ -89,8 +88,8 @@ discard block |
||
| 89 | 88 | // .... 'query' => function($model) { return $model->where('active', 1); } |
| 90 | 89 | // So it reads: SELECT ... WHERE active = 1 AND (XXX = x OR YYY = y) and not SELECT ... WHERE active = 1 AND XXX = x OR YYY = y; |
| 91 | 90 | |
| 92 | - if (! empty($config['query']->getQuery()->wheres)) { |
|
| 93 | - $config['query'] = $config['query']->where(function ($query) use ($model_instance, $config, $search_string, $textColumnTypes) { |
|
| 91 | + if (!empty($config['query']->getQuery()->wheres)) { |
|
| 92 | + $config['query'] = $config['query']->where(function($query) use ($model_instance, $config, $search_string, $textColumnTypes) { |
|
| 94 | 93 | foreach ((array) $config['searchable_attributes'] as $k => $searchColumn) { |
| 95 | 94 | $operation = ($k == 0) ? 'where' : 'orWhere'; |
| 96 | 95 | $columnType = $model_instance->getColumnType($searchColumn); |
@@ -122,7 +121,6 @@ discard block |
||
| 122 | 121 | |
| 123 | 122 | // return the results with or without pagination |
| 124 | 123 | return ($config['paginate'] !== false) ? |
| 125 | - $config['query']->paginate($config['paginate']) : |
|
| 126 | - $config['query']->get(); |
|
| 124 | + $config['query']->paginate($config['paginate']) : $config['query']->get(); |
|
| 127 | 125 | } |
| 128 | 126 | } |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | */ |
| 57 | 57 | public function getEntry($id) |
| 58 | 58 | { |
| 59 | - if (! $this->entry) { |
|
| 59 | + if (!$this->entry) { |
|
| 60 | 60 | $this->entry = $this->model->findOrFail($id); |
| 61 | 61 | $this->entry = $this->entry->withFakes(); |
| 62 | 62 | } |
@@ -258,7 +258,7 @@ discard block |
||
| 258 | 258 | // we will apply the same labels as the values to the menu if developer didn't |
| 259 | 259 | $this->abortIfInvalidPageLength($menu[0]); |
| 260 | 260 | |
| 261 | - if (! isset($menu[1]) || ! is_array($menu[1])) { |
|
| 261 | + if (!isset($menu[1]) || !is_array($menu[1])) { |
|
| 262 | 262 | $menu[1] = $menu[0]; |
| 263 | 263 | } |
| 264 | 264 | } else { |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | { |
| 42 | 42 | $this->crud->allowAccess('list'); |
| 43 | 43 | |
| 44 | - $this->crud->operation('list', function () { |
|
| 44 | + $this->crud->operation('list', function() { |
|
| 45 | 45 | $this->crud->loadDefaultOperationSettingsFromConfig(); |
| 46 | 46 | }); |
| 47 | 47 | } |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | $column_number = (int) $order['column']; |
| 100 | 100 | $column_direction = (strtolower((string) $order['dir']) == 'asc' ? 'ASC' : 'DESC'); |
| 101 | 101 | $column = $this->crud->findColumnById($column_number); |
| 102 | - if ($column['tableColumn'] && ! isset($column['orderLogic'])) { |
|
| 102 | + if ($column['tableColumn'] && !isset($column['orderLogic'])) { |
|
| 103 | 103 | // apply the current orderBy rules |
| 104 | 104 | $this->crud->orderByWithPrefix($column['name'], $column_direction); |
| 105 | 105 | } |
@@ -119,12 +119,12 @@ discard block |
||
| 119 | 119 | $table = $this->crud->model->getTable(); |
| 120 | 120 | $key = $this->crud->model->getKeyName(); |
| 121 | 121 | |
| 122 | - $hasOrderByPrimaryKey = collect($orderBy)->some(function ($item) use ($key, $table) { |
|
| 122 | + $hasOrderByPrimaryKey = collect($orderBy)->some(function($item) use ($key, $table) { |
|
| 123 | 123 | return (isset($item['column']) && $item['column'] === $key) |
| 124 | 124 | || (isset($item['sql']) && str_contains($item['sql'], "$table.$key")); |
| 125 | 125 | }); |
| 126 | 126 | |
| 127 | - if (! $hasOrderByPrimaryKey) { |
|
| 127 | + if (!$hasOrderByPrimaryKey) { |
|
| 128 | 128 | $this->crud->orderByWithPrefix($this->crud->model->getKeyName(), 'DESC'); |
| 129 | 129 | } |
| 130 | 130 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | // otherwise, in case the last line HAS been modified |
| 85 | 85 | // return the last line that has an ending in it |
| 86 | - $possible_end_lines = array_filter($file_lines, function ($k) { |
|
| 86 | + $possible_end_lines = array_filter($file_lines, function($k) { |
|
| 87 | 87 | return strpos($k, '});') === 0; |
| 88 | 88 | }); |
| 89 | 89 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | */ |
| 105 | 105 | private function getLastLineNumberThatContains($needle, $haystack) |
| 106 | 106 | { |
| 107 | - $matchingLines = array_filter($haystack, function ($k) use ($needle) { |
|
| 107 | + $matchingLines = array_filter($haystack, function($k) use ($needle) { |
|
| 108 | 108 | return strpos($k, $needle) !== false; |
| 109 | 109 | }); |
| 110 | 110 | |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | $relation_model = $this->getRelationModel($relation_field['entity'], -1); |
| 56 | 56 | $related_method = Str::afterLast($relation_field['entity'], '.'); |
| 57 | 57 | |
| 58 | - if (! method_exists($relation_model, $related_method)) { |
|
| 58 | + if (!method_exists($relation_model, $related_method)) { |
|
| 59 | 59 | return Str::beforeLast($relation_field['entity'], '.'); |
| 60 | 60 | } |
| 61 | 61 | |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | return collect($this->fields()) |
| 195 | 195 | ->where('model') |
| 196 | 196 | ->whereIn('relation_type', $relation_types) |
| 197 | - ->filter(function ($item) { |
|
| 197 | + ->filter(function($item) { |
|
| 198 | 198 | $related_model = get_class($this->model->{Str::before($item['entity'], '.')}()->getRelated()); |
| 199 | 199 | |
| 200 | 200 | return Str::contains($item['entity'], '.') && $item['model'] !== $related_model ? false : true; |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | // Check if auth exists |
| 49 | 49 | $details = null; |
| 50 | 50 | $process = new Process(['composer', 'config', 'http-basic.backpackforlaravel.com']); |
| 51 | - $process->run(function ($type, $buffer) use (&$details) { |
|
| 51 | + $process->run(function($type, $buffer) use (&$details) { |
|
| 52 | 52 | if ($type !== Process::ERR && $buffer !== '') { |
| 53 | 53 | $details = json_decode($buffer); |
| 54 | 54 | } elseif (File::exists('auth.json')) { |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | }); |
| 59 | 59 | |
| 60 | 60 | // Create an auth.json file |
| 61 | - if (! $details) { |
|
| 61 | + if (!$details) { |
|
| 62 | 62 | $this->info(' Creating auth.json file with your authentication token'); |
| 63 | 63 | |
| 64 | 64 | $this->line(' (Find your access token details on https://backpackforlaravel.com/user/tokens)'); |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | $password = $this->ask('Access token password'); |
| 67 | 67 | |
| 68 | 68 | $process = new Process(['composer', 'config', 'http-basic.backpackforlaravel.com', $username, $password]); |
| 69 | - $process->run(function ($type, $buffer) use ($username, $password) { |
|
| 69 | + $process->run(function($type, $buffer) use ($username, $password) { |
|
| 70 | 70 | if ($type === Process::ERR) { |
| 71 | 71 | // Fallback |
| 72 | 72 | $authFile = [ |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | |
| 81 | 81 | if (File::exists('auth.json')) { |
| 82 | 82 | $currentFile = json_decode(File::get('auth.json'), true); |
| 83 | - if (! ($currentFile['http-basic']['backpackforlaravel.com'] ?? false)) { |
|
| 83 | + if (!($currentFile['http-basic']['backpackforlaravel.com'] ?? false)) { |
|
| 84 | 84 | $authFile = array_merge_recursive($authFile, $currentFile); |
| 85 | 85 | } |
| 86 | 86 | } |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | // Check if repositories exists |
| 95 | 95 | $details = null; |
| 96 | 96 | $process = new Process(['composer', 'config', 'repositories.backpack/devtools']); |
| 97 | - $process->run(function ($type, $buffer) use (&$details) { |
|
| 97 | + $process->run(function($type, $buffer) use (&$details) { |
|
| 98 | 98 | if ($type !== Process::ERR && $buffer !== '') { |
| 99 | 99 | $details = json_decode($buffer); |
| 100 | 100 | } else { |
@@ -104,11 +104,11 @@ discard block |
||
| 104 | 104 | }); |
| 105 | 105 | |
| 106 | 106 | // Create repositories |
| 107 | - if (! $details) { |
|
| 107 | + if (!$details) { |
|
| 108 | 108 | $this->info(' Creating repositories entry in composer.json'); |
| 109 | 109 | |
| 110 | 110 | $process = new Process(['composer', 'config', 'repositories.backpack/devtools', 'composer', 'https://repo.backpackforlaravel.com']); |
| 111 | - $process->run(function ($type, $buffer) { |
|
| 111 | + $process->run(function($type, $buffer) { |
|
| 112 | 112 | if ($type === Process::ERR) { |
| 113 | 113 | // Fallback |
| 114 | 114 | $composerJson = Str::of(File::get('composer.json')); |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | // Require package |
| 140 | 140 | $process = new Process(['composer', 'require', '--dev', '--with-all-dependencies', 'backpack/devtools']); |
| 141 | 141 | $process->setTimeout(300); |
| 142 | - $process->run(function ($type, $buffer) { |
|
| 142 | + $process->run(function($type, $buffer) { |
|
| 143 | 143 | $this->progressBar->advance(); |
| 144 | 144 | }); |
| 145 | 145 | |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | $this->info(' Now running the DevTools installation command.'); |
| 153 | 153 | |
| 154 | 154 | // manually include the command in the run-time |
| 155 | - if (! class_exists(\Backpack\DevTools\Console\Commands\InstallDevTools::class)) { |
|
| 155 | + if (!class_exists(\Backpack\DevTools\Console\Commands\InstallDevTools::class)) { |
|
| 156 | 156 | include base_path('vendor/backpack/devtools/src/Console/Commands/InstallDevTools.php'); |
| 157 | 157 | } |
| 158 | 158 | |
@@ -102,11 +102,11 @@ discard block |
||
| 102 | 102 | */ |
| 103 | 103 | public function setModel($model_namespace) |
| 104 | 104 | { |
| 105 | - if (! class_exists($model_namespace)) { |
|
| 105 | + if (!class_exists($model_namespace)) { |
|
| 106 | 106 | throw new \Exception('The model does not exist.', 500); |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | - if (! method_exists($model_namespace, 'hasCrudTrait')) { |
|
| 109 | + if (!method_exists($model_namespace, 'hasCrudTrait')) { |
|
| 110 | 110 | throw new \Exception('Please use CrudTrait on the model.', 500); |
| 111 | 111 | } |
| 112 | 112 | |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | { |
| 196 | 196 | $complete_route = $route.'.index'; |
| 197 | 197 | |
| 198 | - if (! \Route::has($complete_route)) { |
|
| 198 | + if (!\Route::has($complete_route)) { |
|
| 199 | 199 | throw new \Exception('There are no routes for this route name.', 404); |
| 200 | 200 | } |
| 201 | 201 | |
@@ -293,7 +293,7 @@ discard block |
||
| 293 | 293 | */ |
| 294 | 294 | public function getFirstOfItsTypeInArray($type, $array) |
| 295 | 295 | { |
| 296 | - return Arr::first($array, function ($item) use ($type) { |
|
| 296 | + return Arr::first($array, function($item) use ($type) { |
|
| 297 | 297 | return $item['type'] == $type; |
| 298 | 298 | }); |
| 299 | 299 | } |
@@ -310,8 +310,8 @@ discard block |
||
| 310 | 310 | |
| 311 | 311 | public function sync($type, $fields, $attributes) |
| 312 | 312 | { |
| 313 | - if (! empty($this->{$type})) { |
|
| 314 | - $this->{$type} = array_map(function ($field) use ($fields, $attributes) { |
|
| 313 | + if (!empty($this->{$type})) { |
|
| 314 | + $this->{$type} = array_map(function($field) use ($fields, $attributes) { |
|
| 315 | 315 | if (in_array($field['name'], (array) $fields)) { |
| 316 | 316 | $field = array_merge($field, $attributes); |
| 317 | 317 | } |
@@ -341,15 +341,15 @@ discard block |
||
| 341 | 341 | { |
| 342 | 342 | $relationArray = explode('.', $relationString); |
| 343 | 343 | |
| 344 | - if (! isset($length)) { |
|
| 344 | + if (!isset($length)) { |
|
| 345 | 345 | $length = count($relationArray); |
| 346 | 346 | } |
| 347 | 347 | |
| 348 | - if (! isset($model)) { |
|
| 348 | + if (!isset($model)) { |
|
| 349 | 349 | $model = $this->model; |
| 350 | 350 | } |
| 351 | 351 | |
| 352 | - $result = array_reduce(array_splice($relationArray, 0, $length), function ($obj, $method) { |
|
| 352 | + $result = array_reduce(array_splice($relationArray, 0, $length), function($obj, $method) { |
|
| 353 | 353 | try { |
| 354 | 354 | $result = $obj->$method(); |
| 355 | 355 | |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | if (is_array($entries)) { |
| 385 | 385 | //if attribute does not exist in main array we have more than one entry OR the attribute |
| 386 | 386 | //is an acessor that is not in $appends property of model. |
| 387 | - if (! isset($entries[$attribute])) { |
|
| 387 | + if (!isset($entries[$attribute])) { |
|
| 388 | 388 | //we first check if we don't have the attribute because it's an acessor that is not in appends. |
| 389 | 389 | if ($model_instance->hasGetMutator($attribute) && isset($entries[$modelKey])) { |
| 390 | 390 | $entry_in_database = $model_instance->find($entries[$modelKey]); |
@@ -423,21 +423,21 @@ discard block |
||
| 423 | 423 | */ |
| 424 | 424 | public function parseTranslatableAttributes($model, $attribute, $value) |
| 425 | 425 | { |
| 426 | - if (! method_exists($model, 'isTranslatableAttribute')) { |
|
| 426 | + if (!method_exists($model, 'isTranslatableAttribute')) { |
|
| 427 | 427 | return $value; |
| 428 | 428 | } |
| 429 | 429 | |
| 430 | - if (! $model->isTranslatableAttribute($attribute)) { |
|
| 430 | + if (!$model->isTranslatableAttribute($attribute)) { |
|
| 431 | 431 | return $value; |
| 432 | 432 | } |
| 433 | 433 | |
| 434 | - if (! is_array($value)) { |
|
| 434 | + if (!is_array($value)) { |
|
| 435 | 435 | $decodedAttribute = json_decode($value, true); |
| 436 | 436 | } else { |
| 437 | 437 | $decodedAttribute = $value; |
| 438 | 438 | } |
| 439 | 439 | |
| 440 | - if (is_array($decodedAttribute) && ! empty($decodedAttribute)) { |
|
| 440 | + if (is_array($decodedAttribute) && !empty($decodedAttribute)) { |
|
| 441 | 441 | if (isset($decodedAttribute[app()->getLocale()])) { |
| 442 | 442 | return $decodedAttribute[app()->getLocale()]; |
| 443 | 443 | } else { |
@@ -463,7 +463,7 @@ discard block |
||
| 463 | 463 | $relation = $model->{$firstRelationName}; |
| 464 | 464 | |
| 465 | 465 | $results = []; |
| 466 | - if (! is_null($relation)) { |
|
| 466 | + if (!is_null($relation)) { |
|
| 467 | 467 | if ($relation instanceof Collection) { |
| 468 | 468 | $currentResults = $relation->all(); |
| 469 | 469 | } elseif (is_array($relation)) { |
@@ -476,7 +476,7 @@ discard block |
||
| 476 | 476 | |
| 477 | 477 | array_shift($relationArray); |
| 478 | 478 | |
| 479 | - if (! empty($relationArray)) { |
|
| 479 | + if (!empty($relationArray)) { |
|
| 480 | 480 | foreach ($currentResults as $currentResult) { |
| 481 | 481 | $results = array_merge_recursive($results, $this->getRelatedEntries($currentResult, implode('.', $relationArray))); |
| 482 | 482 | } |
@@ -30,36 +30,36 @@ |
||
| 30 | 30 | } |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - //for update form, get initial state of the entity |
|
| 34 | - if (isset($id) && $id) { |
|
| 33 | + //for update form, get initial state of the entity |
|
| 34 | + if (isset($id) && $id) { |
|
| 35 | 35 | |
| 36 | 36 | //get entity with relations for primary dependency |
| 37 | - $entity_dependencies = $entity_model->with($primary_dependency['entity']) |
|
| 38 | - ->with($primary_dependency['entity'].'.'.$primary_dependency['entity_secondary']) |
|
| 39 | - ->find($id); |
|
| 37 | + $entity_dependencies = $entity_model->with($primary_dependency['entity']) |
|
| 38 | + ->with($primary_dependency['entity'].'.'.$primary_dependency['entity_secondary']) |
|
| 39 | + ->find($id); |
|
| 40 | 40 | |
| 41 | - $secondaries_from_primary = []; |
|
| 41 | + $secondaries_from_primary = []; |
|
| 42 | 42 | |
| 43 | - //convert relation in array |
|
| 44 | - $primary_array = $entity_dependencies->{$primary_dependency['entity']}->toArray(); |
|
| 43 | + //convert relation in array |
|
| 44 | + $primary_array = $entity_dependencies->{$primary_dependency['entity']}->toArray(); |
|
| 45 | 45 | |
| 46 | - $secondary_ids = []; |
|
| 46 | + $secondary_ids = []; |
|
| 47 | 47 | |
| 48 | - //create secondary dependency from primary relation, used to check what checkbox must be checked from second checklist |
|
| 49 | - if (old($primary_dependency['name'])) { |
|
| 50 | - foreach (old($primary_dependency['name']) as $primary_item) { |
|
| 51 | - foreach ($dependencyArray[$primary_item] as $second_item) { |
|
| 52 | - $secondary_ids[$second_item] = $second_item; |
|
| 53 | - } |
|
| 54 | - } |
|
| 55 | - } else { //create dependencies from relation if not from validate error |
|
| 56 | - foreach ($primary_array as $primary_item) { |
|
| 57 | - foreach ($primary_item[$secondary_dependency['entity']] as $second_item) { |
|
| 58 | - $secondary_ids[$second_item['id']] = $second_item['id']; |
|
| 59 | - } |
|
| 60 | - } |
|
| 61 | - } |
|
| 62 | - } |
|
| 48 | + //create secondary dependency from primary relation, used to check what checkbox must be checked from second checklist |
|
| 49 | + if (old($primary_dependency['name'])) { |
|
| 50 | + foreach (old($primary_dependency['name']) as $primary_item) { |
|
| 51 | + foreach ($dependencyArray[$primary_item] as $second_item) { |
|
| 52 | + $secondary_ids[$second_item] = $second_item; |
|
| 53 | + } |
|
| 54 | + } |
|
| 55 | + } else { //create dependencies from relation if not from validate error |
|
| 56 | + foreach ($primary_array as $primary_item) { |
|
| 57 | + foreach ($primary_item[$secondary_dependency['entity']] as $second_item) { |
|
| 58 | + $secondary_ids[$second_item['id']] = $second_item['id']; |
|
| 59 | + } |
|
| 60 | + } |
|
| 61 | + } |
|
| 62 | + } |
|
| 63 | 63 | |
| 64 | 64 | //json encode of dependency matrix |
| 65 | 65 | $dependencyJson = json_encode($dependencyArray); |