We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | <!-- elFinder JS (REQUIRED) --> |
| 18 | 18 | <script src="<?= asset($dir.'/js/elfinder.min.js') ?>"></script> |
| 19 | 19 | |
| 20 | - <?php if($locale){ ?> |
|
| 20 | + <?php if ($locale) { ?> |
|
| 21 | 21 | <!-- elFinder translation (OPTIONAL) --> |
| 22 | 22 | <script src="<?= asset($dir."/js/i18n/elfinder.$locale.js") ?>"></script> |
| 23 | 23 | <?php } ?> |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | $().ready(function() { |
| 41 | 41 | var elf = $('#elfinder').elfinder({ |
| 42 | 42 | // set your elFinder options here |
| 43 | - <?php if($locale){ ?> |
|
| 43 | + <?php if ($locale) { ?> |
|
| 44 | 44 | lang: '<?= $locale ?>', // locale |
| 45 | 45 | <?php } ?> |
| 46 | 46 | customData: { |
@@ -71,8 +71,7 @@ |
||
| 71 | 71 | if ($results && $results->count()) { |
| 72 | 72 | $results_array = $results->lists($column['attribute'], 'id'); |
| 73 | 73 | echo implode(', ', $results_array->toArray()); |
| 74 | - } |
|
| 75 | - else |
|
| 74 | + } else |
|
| 76 | 75 | { |
| 77 | 76 | echo '-'; |
| 78 | 77 | } |
@@ -20,42 +20,42 @@ discard block |
||
| 20 | 20 | |
| 21 | 21 | @section('content') |
| 22 | 22 | <?php |
| 23 | - function tree_element($entry, $key, $all_entries, $crud) |
|
| 24 | - { |
|
| 23 | + function tree_element($entry, $key, $all_entries, $crud) |
|
| 24 | + { |
|
| 25 | 25 | if (!isset($entry->tree_element_shown)) { |
| 26 | - // mark the element as shown |
|
| 27 | - $all_entries[$key]->tree_element_shown = true; |
|
| 28 | - $entry->tree_element_shown = true; |
|
| 26 | + // mark the element as shown |
|
| 27 | + $all_entries[$key]->tree_element_shown = true; |
|
| 28 | + $entry->tree_element_shown = true; |
|
| 29 | 29 | |
| 30 | - // show the tree element |
|
| 31 | - echo '<li id="list_'.$entry->id.'">'; |
|
| 32 | - echo '<div><span class="disclose"><span></span></span>'.$entry->{$crud->reorder_label}.'</div>'; |
|
| 30 | + // show the tree element |
|
| 31 | + echo '<li id="list_'.$entry->id.'">'; |
|
| 32 | + echo '<div><span class="disclose"><span></span></span>'.$entry->{$crud->reorder_label}.'</div>'; |
|
| 33 | 33 | |
| 34 | - // see if this element has any children |
|
| 35 | - $children = []; |
|
| 36 | - foreach ($all_entries as $key => $subentry) { |
|
| 34 | + // see if this element has any children |
|
| 35 | + $children = []; |
|
| 36 | + foreach ($all_entries as $key => $subentry) { |
|
| 37 | 37 | if ($subentry->parent_id == $entry->id) { |
| 38 | - $children[] = $subentry; |
|
| 38 | + $children[] = $subentry; |
|
| 39 | + } |
|
| 39 | 40 | } |
| 40 | - } |
|
| 41 | 41 | |
| 42 | - $children = collect($children)->sortBy('lft'); |
|
| 42 | + $children = collect($children)->sortBy('lft'); |
|
| 43 | 43 | |
| 44 | - // if it does have children, show them |
|
| 45 | - if (count($children)) { |
|
| 44 | + // if it does have children, show them |
|
| 45 | + if (count($children)) { |
|
| 46 | 46 | echo '<ol>'; |
| 47 | 47 | foreach ($children as $key => $child) { |
| 48 | - $children[$key] = tree_element($child, $child->id, $all_entries, $crud); |
|
| 48 | + $children[$key] = tree_element($child, $child->id, $all_entries, $crud); |
|
| 49 | 49 | } |
| 50 | 50 | echo '</ol>'; |
| 51 | - } |
|
| 52 | - echo '</li>'; |
|
| 51 | + } |
|
| 52 | + echo '</li>'; |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | return $entry; |
| 56 | - } |
|
| 56 | + } |
|
| 57 | 57 | |
| 58 | - ?> |
|
| 58 | + ?> |
|
| 59 | 59 | <div class="row"> |
| 60 | 60 | <div class="col-md-8 col-md-offset-2"> |
| 61 | 61 | @if ($crud->hasAccess('list')) |
@@ -87,15 +87,15 @@ discard block |
||
| 87 | 87 | |
| 88 | 88 | <ol class="sortable"> |
| 89 | 89 | <?php |
| 90 | - $all_entries = collect($entries->all())->sortBy('lft')->keyBy('id'); |
|
| 91 | - $root_entries = $all_entries->filter(function($item) { |
|
| 90 | + $all_entries = collect($entries->all())->sortBy('lft')->keyBy('id'); |
|
| 91 | + $root_entries = $all_entries->filter(function($item) { |
|
| 92 | 92 | return $item->parent_id == 0; |
| 93 | - }); |
|
| 94 | - ?> |
|
| 93 | + }); |
|
| 94 | + ?> |
|
| 95 | 95 | @foreach ($root_entries as $key => $entry) |
| 96 | 96 | <?php |
| 97 | 97 | $root_entries[$key] = tree_element($entry, $key, $all_entries, $crud); |
| 98 | - ?> |
|
| 98 | + ?> |
|
| 99 | 99 | @endforeach |
| 100 | 100 | </ol> |
| 101 | 101 | |
@@ -15,15 +15,15 @@ discard block |
||
| 15 | 15 | $dependencyArray = []; |
| 16 | 16 | |
| 17 | 17 | //convert dependency array to simple matrix ( prymary id as key and array with secondaries id ) |
| 18 | - foreach($dependencies as $primary){ |
|
| 18 | + foreach ($dependencies as $primary) { |
|
| 19 | 19 | $dependencyArray[$primary->id] = []; |
| 20 | - foreach($primary->{$primary_dependency['entity_secondary']} as $secondary){ |
|
| 20 | + foreach ($primary->{$primary_dependency['entity_secondary']} as $secondary) { |
|
| 21 | 21 | $dependencyArray[$primary->id][] = $secondary->id; |
| 22 | 22 | } |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | //for update form, get initial state of the entity |
| 26 | - if( isset($id) && $id ){ |
|
| 26 | + if (isset($id) && $id) { |
|
| 27 | 27 | |
| 28 | 28 | //get entity with relations for primary dependency |
| 29 | 29 | $entity_dependencies = $entity_model->with($primary_dependency['entity']) |
@@ -39,15 +39,15 @@ discard block |
||
| 39 | 39 | $secondary_ids = []; |
| 40 | 40 | |
| 41 | 41 | //create secondary dependency from primary relation, used to check what chekbox must be check from second checklist |
| 42 | - if( old($primary_dependency['name']) ) { |
|
| 43 | - foreach( old($primary_dependency['name']) as $primary_item ){ |
|
| 44 | - foreach($dependencyArray[$primary_item] as $second_item ){ |
|
| 42 | + if (old($primary_dependency['name'])) { |
|
| 43 | + foreach (old($primary_dependency['name']) as $primary_item) { |
|
| 44 | + foreach ($dependencyArray[$primary_item] as $second_item) { |
|
| 45 | 45 | $secondary_ids[$second_item] = $second_item; |
| 46 | 46 | } |
| 47 | 47 | } |
| 48 | - }else{ //create dependecies from relation if not from validate error |
|
| 49 | - foreach( $primary_array as $primary_item ){ |
|
| 50 | - foreach($primary_item[$secondary_dependency['entity']] as $second_item ){ |
|
| 48 | + } else { //create dependecies from relation if not from validate error |
|
| 49 | + foreach ($primary_array as $primary_item) { |
|
| 50 | + foreach ($primary_item[$secondary_dependency['entity']] as $second_item) { |
|
| 51 | 51 | $secondary_ids[$second_item['id']] = $second_item['id']; |
| 52 | 52 | } |
| 53 | 53 | } |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | $secondary_ids[$second_item] = $second_item; |
| 46 | 46 | } |
| 47 | 47 | } |
| 48 | - }else{ //create dependecies from relation if not from validate error |
|
| 48 | + } else{ //create dependecies from relation if not from validate error |
|
| 49 | 49 | foreach( $primary_array as $primary_item ){ |
| 50 | 50 | foreach($primary_item[$secondary_dependency['entity']] as $second_item ){ |
| 51 | 51 | $secondary_ids[$second_item['id']] = $second_item['id']; |
@@ -2,34 +2,34 @@ discard block |
||
| 2 | 2 | <div class="form-group checklist_dependency" data-entity ="{{ $field['field_unique_name'] }}"> |
| 3 | 3 | <label>{{ $field['label'] }}</label> |
| 4 | 4 | <?php |
| 5 | - $entity_model = $crud->getModel(); |
|
| 5 | + $entity_model = $crud->getModel(); |
|
| 6 | 6 | |
| 7 | - //short name for dependency fields |
|
| 8 | - $primary_dependency = $field['subfields']['primary']; |
|
| 9 | - $secondary_dependency = $field['subfields']['secondary']; |
|
| 7 | + //short name for dependency fields |
|
| 8 | + $primary_dependency = $field['subfields']['primary']; |
|
| 9 | + $secondary_dependency = $field['subfields']['secondary']; |
|
| 10 | 10 | |
| 11 | 11 | |
| 12 | - //all items with relation |
|
| 13 | - $dependencies = $primary_dependency['model']::with($primary_dependency['entity_secondary'])->get(); |
|
| 12 | + //all items with relation |
|
| 13 | + $dependencies = $primary_dependency['model']::with($primary_dependency['entity_secondary'])->get(); |
|
| 14 | 14 | |
| 15 | - $dependencyArray = []; |
|
| 15 | + $dependencyArray = []; |
|
| 16 | 16 | |
| 17 | - //convert dependency array to simple matrix ( prymary id as key and array with secondaries id ) |
|
| 18 | - foreach($dependencies as $primary){ |
|
| 19 | - $dependencyArray[$primary->id] = []; |
|
| 17 | + //convert dependency array to simple matrix ( prymary id as key and array with secondaries id ) |
|
| 18 | + foreach($dependencies as $primary){ |
|
| 19 | + $dependencyArray[$primary->id] = []; |
|
| 20 | 20 | foreach($primary->{$primary_dependency['entity_secondary']} as $secondary){ |
| 21 | 21 | $dependencyArray[$primary->id][] = $secondary->id; |
| 22 | 22 | } |
| 23 | - } |
|
| 23 | + } |
|
| 24 | 24 | |
| 25 | - //for update form, get initial state of the entity |
|
| 26 | - if( isset($id) && $id ){ |
|
| 25 | + //for update form, get initial state of the entity |
|
| 26 | + if( isset($id) && $id ){ |
|
| 27 | 27 | |
| 28 | 28 | //get entity with relations for primary dependency |
| 29 | 29 | $entity_dependencies = $entity_model->with($primary_dependency['entity']) |
| 30 | - ->with($primary_dependency['entity'].'.'.$primary_dependency['entity_secondary']) |
|
| 31 | - ->where('id', $id) |
|
| 32 | - ->first(); |
|
| 30 | + ->with($primary_dependency['entity'].'.'.$primary_dependency['entity_secondary']) |
|
| 31 | + ->where('id', $id) |
|
| 32 | + ->first(); |
|
| 33 | 33 | |
| 34 | 34 | $secondaries_from_primary = []; |
| 35 | 35 | |
@@ -40,23 +40,23 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | //create secondary dependency from primary relation, used to check what chekbox must be check from second checklist |
| 42 | 42 | if( old($primary_dependency['name']) ) { |
| 43 | - foreach( old($primary_dependency['name']) as $primary_item ){ |
|
| 43 | + foreach( old($primary_dependency['name']) as $primary_item ){ |
|
| 44 | 44 | foreach($dependencyArray[$primary_item] as $second_item ){ |
| 45 | 45 | $secondary_ids[$second_item] = $second_item; |
| 46 | 46 | } |
| 47 | - } |
|
| 47 | + } |
|
| 48 | 48 | }else{ //create dependecies from relation if not from validate error |
| 49 | - foreach( $primary_array as $primary_item ){ |
|
| 49 | + foreach( $primary_array as $primary_item ){ |
|
| 50 | 50 | foreach($primary_item[$secondary_dependency['entity']] as $second_item ){ |
| 51 | 51 | $secondary_ids[$second_item['id']] = $second_item['id']; |
| 52 | 52 | } |
| 53 | - } |
|
| 53 | + } |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - } |
|
| 56 | + } |
|
| 57 | 57 | |
| 58 | - //json encode of dependency matrix |
|
| 59 | - $dependencyJson = json_encode($dependencyArray); |
|
| 58 | + //json encode of dependency matrix |
|
| 59 | + $dependencyJson = json_encode($dependencyArray); |
|
| 60 | 60 | ?> |
| 61 | 61 | <script> |
| 62 | 62 | var {{ $field['field_unique_name'] }} = {!! $dependencyJson !!}; |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <!-- select2 --> |
| 2 | 2 | <div class="form-group"> |
| 3 | 3 | <label>{{ $field['label'] }}</label> |
| 4 | - <?php $entity_model = $crud->getModel();?> |
|
| 4 | + <?php $entity_model = $crud->getModel(); ?> |
|
| 5 | 5 | |
| 6 | 6 | <div class="row"> |
| 7 | 7 | @foreach ($field['model']::all() as $connected_entity_entry) |
@@ -2,10 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Http\Controllers\Admin; |
| 4 | 4 | |
| 5 | -use App\Http\Requests; |
|
| 6 | 5 | use Backpack\CRUD\app\Http\Controllers\CrudController; |
| 7 | 6 | // VALIDATION: change the requests to match your own file names if you need form validation |
| 8 | -use Backpack\CRUD\app\Http\Requests\CrudRequest as StoreRequest; |
|
| 9 | 7 | use Backpack\CRUD\app\Http\Requests\CrudRequest as UpdateRequest; |
| 10 | 8 | |
| 11 | 9 | class ExampleCrudController extends CrudController |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | |
| 67 | 67 | private function registerCRUD() |
| 68 | 68 | { |
| 69 | - $this->app->bind('CRUD', function ($app) { |
|
| 69 | + $this->app->bind('CRUD', function($app) { |
|
| 70 | 70 | return new CRUD($app); |
| 71 | 71 | }); |
| 72 | 72 | } |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | <!-- Include jQuery, jQuery UI, elFinder (REQUIRED) --> |
| 27 | 27 | |
| 28 | 28 | <?php |
| 29 | - $mimeTypes = implode(',', array_map(function ($t) {return "'".$t."'"; }, explode(',', $type))); |
|
| 29 | + $mimeTypes = implode(',', array_map(function($t) {return "'".$t."'"; }, explode(',', $type))); |
|
| 30 | 30 | ?> |
| 31 | 31 | |
| 32 | 32 | <script type="text/javascript"> |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | // TODO |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | - /* |
|
| 168 | + /* |
|
| 169 | 169 | |-------------------------------------------------------------------------- |
| 170 | 170 | | READ |
| 171 | 171 | |-------------------------------------------------------------------------- |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | $this->details_row = false; |
| 247 | 247 | } |
| 248 | 248 | |
| 249 | - /* |
|
| 249 | + /* |
|
| 250 | 250 | |-------------------------------------------------------------------------- |
| 251 | 251 | | UPDATE |
| 252 | 252 | |-------------------------------------------------------------------------- |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | return $fields; |
| 307 | 307 | } |
| 308 | 308 | |
| 309 | - /* |
|
| 309 | + /* |
|
| 310 | 310 | |-------------------------------------------------------------------------- |
| 311 | 311 | | DELETE |
| 312 | 312 | |-------------------------------------------------------------------------- |
@@ -391,7 +391,7 @@ discard block |
||
| 391 | 391 | return $this->reorder; |
| 392 | 392 | } |
| 393 | 393 | |
| 394 | - /* |
|
| 394 | + /* |
|
| 395 | 395 | |-------------------------------------------------------------------------- |
| 396 | 396 | | CRUD ACCESS |
| 397 | 397 | |-------------------------------------------------------------------------- |
@@ -316,6 +316,7 @@ discard block |
||
| 316 | 316 | * Delete a row from the database. |
| 317 | 317 | * |
| 318 | 318 | * @param [int] The id of the item to be deleted. |
| 319 | + * @param integer $id |
|
| 319 | 320 | * |
| 320 | 321 | * @return [bool] Deletion confirmation. |
| 321 | 322 | * |
@@ -429,8 +430,9 @@ discard block |
||
| 429 | 430 | * Check if a permission is enabled for a Crud Panel. Fail if not. |
| 430 | 431 | * |
| 431 | 432 | * @param [string] Permission. |
| 433 | + * @param string $permission |
|
| 432 | 434 | * |
| 433 | - * @return bool |
|
| 435 | + * @return boolean|null |
|
| 434 | 436 | */ |
| 435 | 437 | public function hasAccessOrFail($permission) |
| 436 | 438 | { |
@@ -454,6 +456,7 @@ discard block |
||
| 454 | 456 | * All Create-Read-Update-Delete operations are done using that Eloquent Collection. |
| 455 | 457 | * |
| 456 | 458 | * @param [string] Full model namespace. Ex: App\Models\Article |
| 459 | + * @param string $model_namespace |
|
| 457 | 460 | */ |
| 458 | 461 | public function setModel($model_namespace) |
| 459 | 462 | { |
@@ -483,6 +486,7 @@ discard block |
||
| 483 | 486 | * |
| 484 | 487 | * @param [string] Route name. |
| 485 | 488 | * @param [array] Parameters. |
| 489 | + * @param string $route |
|
| 486 | 490 | */ |
| 487 | 491 | public function setRoute($route) |
| 488 | 492 | { |
@@ -530,6 +534,8 @@ discard block |
||
| 530 | 534 | * |
| 531 | 535 | * @param [string] Entity name, in singular. Ex: article |
| 532 | 536 | * @param [string] Entity name, in plural. Ex: articles |
| 537 | + * @param string $singular |
|
| 538 | + * @param string $plural |
|
| 533 | 539 | */ |
| 534 | 540 | public function setEntityNameStrings($singular, $plural) |
| 535 | 541 | { |
@@ -708,8 +714,6 @@ discard block |
||
| 708 | 714 | /** |
| 709 | 715 | * Add a field to the create/update form or both. |
| 710 | 716 | * |
| 711 | - * @param [string] $name Field name (the column name in the db in most cases) |
|
| 712 | - * @param [array] $options Field-type-specific information. |
|
| 713 | 717 | * @param string $form The form to add the field to (create/update/both) |
| 714 | 718 | */ |
| 715 | 719 | public function addField($field, $form = 'both') |
@@ -1260,6 +1264,9 @@ discard block |
||
| 1260 | 1264 | $this->setSort('fields', (array) $order); |
| 1261 | 1265 | } |
| 1262 | 1266 | |
| 1267 | + /** |
|
| 1268 | + * @param string $type |
|
| 1269 | + */ |
|
| 1263 | 1270 | public function sync($type, $fields, $attributes) |
| 1264 | 1271 | { |
| 1265 | 1272 | if (!empty($this->{$type})) { |
@@ -1273,11 +1280,17 @@ discard block |
||
| 1273 | 1280 | } |
| 1274 | 1281 | } |
| 1275 | 1282 | |
| 1283 | + /** |
|
| 1284 | + * @param string $items |
|
| 1285 | + */ |
|
| 1276 | 1286 | public function setSort($items, $order) |
| 1277 | 1287 | { |
| 1278 | 1288 | $this->sort[$items] = $order; |
| 1279 | 1289 | } |
| 1280 | 1290 | |
| 1291 | + /** |
|
| 1292 | + * @param string $items |
|
| 1293 | + */ |
|
| 1281 | 1294 | public function sort($items) |
| 1282 | 1295 | { |
| 1283 | 1296 | if (array_key_exists($items, $this->sort)) { |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | |
| 285 | 285 | foreach ($fields as $k => $field) { |
| 286 | 286 | // set the value |
| 287 | - if (! isset($fields[$k]['value'])) { |
|
| 287 | + if (!isset($fields[$k]['value'])) { |
|
| 288 | 288 | if (isset($field['subfields'])) { |
| 289 | 289 | $fields[$k]['value'] = []; |
| 290 | 290 | foreach ($field['subfields'] as $key => $subfield) { |
@@ -418,7 +418,7 @@ discard block |
||
| 418 | 418 | */ |
| 419 | 419 | public function hasAccess($permission) |
| 420 | 420 | { |
| 421 | - if (! in_array($permission, $this->access)) { |
|
| 421 | + if (!in_array($permission, $this->access)) { |
|
| 422 | 422 | return false; |
| 423 | 423 | } |
| 424 | 424 | |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | */ |
| 435 | 435 | public function hasAccessOrFail($permission) |
| 436 | 436 | { |
| 437 | - if (! in_array($permission, $this->access)) { |
|
| 437 | + if (!in_array($permission, $this->access)) { |
|
| 438 | 438 | abort(403, trans('backpack::crud.unauthorized_access')); |
| 439 | 439 | } |
| 440 | 440 | } |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | */ |
| 458 | 458 | public function setModel($model_namespace) |
| 459 | 459 | { |
| 460 | - if (! class_exists($model_namespace)) { |
|
| 460 | + if (!class_exists($model_namespace)) { |
|
| 461 | 461 | throw new \Exception('This model does not exist.', 404); |
| 462 | 462 | } |
| 463 | 463 | |
@@ -501,7 +501,7 @@ discard block |
||
| 501 | 501 | { |
| 502 | 502 | $complete_route = $route.'.index'; |
| 503 | 503 | |
| 504 | - if (! \Route::has($complete_route)) { |
|
| 504 | + if (!\Route::has($complete_route)) { |
|
| 505 | 505 | throw new \Exception('There are no routes for this route name.', 404); |
| 506 | 506 | } |
| 507 | 507 | |
@@ -633,7 +633,7 @@ discard block |
||
| 633 | 633 | */ |
| 634 | 634 | public function addDefaultLabel($array) |
| 635 | 635 | { |
| 636 | - if (! array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) { |
|
| 636 | + if (!array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) { |
|
| 637 | 637 | $array = array_merge(['label' => ucfirst($this->makeLabel($array['name']))], $array); |
| 638 | 638 | |
| 639 | 639 | return $array; |
@@ -723,12 +723,12 @@ discard block |
||
| 723 | 723 | } |
| 724 | 724 | |
| 725 | 725 | // if the label is missing, we should set it |
| 726 | - if (! isset($complete_field_array['label'])) { |
|
| 726 | + if (!isset($complete_field_array['label'])) { |
|
| 727 | 727 | $complete_field_array['label'] = ucfirst($complete_field_array['name']); |
| 728 | 728 | } |
| 729 | 729 | |
| 730 | 730 | // if the field type is missing, we should set it |
| 731 | - if (! isset($complete_field_array['type'])) { |
|
| 731 | + if (!isset($complete_field_array['type'])) { |
|
| 732 | 732 | $complete_field_array['type'] = $this->getFieldTypeFromDbColumnType($complete_field_array['name']); |
| 733 | 733 | } |
| 734 | 734 | |
@@ -790,7 +790,7 @@ discard block |
||
| 790 | 790 | */ |
| 791 | 791 | public function removeFields($array_of_names, $form = 'both') |
| 792 | 792 | { |
| 793 | - if (! empty($array_of_names)) { |
|
| 793 | + if (!empty($array_of_names)) { |
|
| 794 | 794 | foreach ($array_of_names as $name) { |
| 795 | 795 | $this->removeField($name, $form); |
| 796 | 796 | } |
@@ -921,7 +921,7 @@ discard block |
||
| 921 | 921 | { |
| 922 | 922 | $this->getDbColumnTypes(); |
| 923 | 923 | |
| 924 | - array_map(function ($field) { |
|
| 924 | + array_map(function($field) { |
|
| 925 | 925 | // $this->labels[$field] = $this->makeLabel($field); |
| 926 | 926 | |
| 927 | 927 | $new_field = [ |
@@ -935,7 +935,7 @@ discard block |
||
| 935 | 935 | $this->create_fields[] = $new_field; |
| 936 | 936 | $this->update_fields[] = $new_field; |
| 937 | 937 | |
| 938 | - if (! in_array($field, $this->model->getHidden())) { |
|
| 938 | + if (!in_array($field, $this->model->getHidden())) { |
|
| 939 | 939 | $this->columns[] = [ |
| 940 | 940 | 'name' => $field, |
| 941 | 941 | 'label' => ucfirst($field), |
@@ -969,7 +969,7 @@ discard block |
||
| 969 | 969 | */ |
| 970 | 970 | public function getFieldTypeFromDbColumnType($field) |
| 971 | 971 | { |
| 972 | - if (! array_key_exists($field, $this->field_types)) { |
|
| 972 | + if (!array_key_exists($field, $this->field_types)) { |
|
| 973 | 973 | return 'text'; |
| 974 | 974 | } |
| 975 | 975 | |
@@ -1050,7 +1050,7 @@ discard block |
||
| 1050 | 1050 | $columns = \Schema::getColumnListing($this->model->getTable()); |
| 1051 | 1051 | $fillable = $this->model->getFillable(); |
| 1052 | 1052 | |
| 1053 | - if (! empty($fillable)) { |
|
| 1053 | + if (!empty($fillable)) { |
|
| 1054 | 1054 | $columns = array_intersect($columns, $fillable); |
| 1055 | 1055 | } |
| 1056 | 1056 | |
@@ -1098,7 +1098,7 @@ discard block |
||
| 1098 | 1098 | // remove the fake field |
| 1099 | 1099 | array_pull($request, $fields[$k]['name']); |
| 1100 | 1100 | |
| 1101 | - if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
| 1101 | + if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
| 1102 | 1102 | array_push($fake_field_columns_to_encode, $fields[$k]['store_in']); |
| 1103 | 1103 | } |
| 1104 | 1104 | } else { |
@@ -1109,7 +1109,7 @@ discard block |
||
| 1109 | 1109 | // remove the fake field |
| 1110 | 1110 | array_pull($request, $fields[$k]['name']); |
| 1111 | 1111 | |
| 1112 | - if (! in_array('extras', $fake_field_columns_to_encode, true)) { |
|
| 1112 | + if (!in_array('extras', $fake_field_columns_to_encode, true)) { |
|
| 1113 | 1113 | array_push($fake_field_columns_to_encode, 'extras'); |
| 1114 | 1114 | } |
| 1115 | 1115 | } |
@@ -1152,20 +1152,20 @@ discard block |
||
| 1152 | 1152 | if (isset($fields[$k]['fake']) && $fields[$k]['fake'] == true) { |
| 1153 | 1153 | // add it to the request in its appropriate variable - the one defined, if defined |
| 1154 | 1154 | if (isset($fields[$k]['store_in'])) { |
| 1155 | - if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
| 1155 | + if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
| 1156 | 1156 | array_push($fake_field_columns_to_encode, $fields[$k]['store_in']); |
| 1157 | 1157 | } |
| 1158 | 1158 | } else { |
| 1159 | 1159 | //otherwise in the one defined in the $crud variable |
| 1160 | 1160 | |
| 1161 | - if (! in_array('extras', $fake_field_columns_to_encode, true)) { |
|
| 1161 | + if (!in_array('extras', $fake_field_columns_to_encode, true)) { |
|
| 1162 | 1162 | array_push($fake_field_columns_to_encode, 'extras'); |
| 1163 | 1163 | } |
| 1164 | 1164 | } |
| 1165 | 1165 | } |
| 1166 | 1166 | } |
| 1167 | 1167 | |
| 1168 | - if (! count($fake_field_columns_to_encode)) { |
|
| 1168 | + if (!count($fake_field_columns_to_encode)) { |
|
| 1169 | 1169 | return ['extras']; |
| 1170 | 1170 | } |
| 1171 | 1171 | |
@@ -1186,7 +1186,7 @@ discard block |
||
| 1186 | 1186 | */ |
| 1187 | 1187 | public function getFirstOfItsTypeInArray($type, $array) |
| 1188 | 1188 | { |
| 1189 | - return array_first($array, function ($key, $item) use ($type) { |
|
| 1189 | + return array_first($array, function($key, $item) use ($type) { |
|
| 1190 | 1190 | return $item['type'] == $type; |
| 1191 | 1191 | }); |
| 1192 | 1192 | } |
@@ -1223,7 +1223,7 @@ discard block |
||
| 1223 | 1223 | |
| 1224 | 1224 | public function showButtons() |
| 1225 | 1225 | { |
| 1226 | - return ! empty($this->buttons) && ! (count($this->buttons) == 1 && array_key_exists('add', $this->buttons)); |
|
| 1226 | + return !empty($this->buttons) && !(count($this->buttons) == 1 && array_key_exists('add', $this->buttons)); |
|
| 1227 | 1227 | } |
| 1228 | 1228 | |
| 1229 | 1229 | public function initButtons() |
@@ -1262,8 +1262,8 @@ discard block |
||
| 1262 | 1262 | |
| 1263 | 1263 | public function sync($type, $fields, $attributes) |
| 1264 | 1264 | { |
| 1265 | - if (! empty($this->{$type})) { |
|
| 1266 | - $this->{$type} = array_map(function ($field) use ($fields, $attributes) { |
|
| 1265 | + if (!empty($this->{$type})) { |
|
| 1266 | + $this->{$type} = array_map(function($field) use ($fields, $attributes) { |
|
| 1267 | 1267 | if (in_array($field['name'], (array) $fields)) { |
| 1268 | 1268 | $field = array_merge($field, $attributes); |
| 1269 | 1269 | } |
@@ -1289,7 +1289,7 @@ discard block |
||
| 1289 | 1289 | } |
| 1290 | 1290 | } |
| 1291 | 1291 | |
| 1292 | - return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function ($item) use ($items) {return ! in_array($item['name'], $this->sort[$items]); })); |
|
| 1292 | + return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use ($items) {return !in_array($item['name'], $this->sort[$items]); })); |
|
| 1293 | 1293 | } |
| 1294 | 1294 | |
| 1295 | 1295 | return $this->{$items}; |