@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | { |
6 | 6 | public function getConfigValue() |
7 | 7 | { |
8 | - if (! property_exists($this, 'config') || ! is_array($this->config) || empty($this->config)) { |
|
8 | + if (!property_exists($this, 'config') || !is_array($this->config) || empty($this->config)) { |
|
9 | 9 | return null; |
10 | 10 | } |
11 | 11 | |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | if (is_array($params) && count($params) > 0) { |
19 | 19 | foreach ($params as $configKey) { |
20 | - if (! array_key_exists($configKey, $nestedConfig)) { |
|
20 | + if (!array_key_exists($configKey, $nestedConfig)) { |
|
21 | 21 | $nestedConfig = array(); |
22 | 22 | return null; |
23 | 23 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | public function presentation() |
57 | 57 | { |
58 | - return transcrud($this->presentation) ? : ucfirst(str_replace('_', ' ', transcrud($this->name))); |
|
58 | + return transcrud($this->presentation) ?: ucfirst(str_replace('_', ' ', transcrud($this->name))); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | public function type() |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | |
90 | 90 | public function setFunctions($functions) |
91 | 91 | { |
92 | - if (! is_array($functions)) { |
|
92 | + if (!is_array($functions)) { |
|
93 | 93 | $functions = array($functions); |
94 | 94 | } |
95 | 95 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | public function applyFunctions($value) |
100 | 100 | { |
101 | 101 | foreach ($this->functions as $function) { |
102 | - if (! function_exists($function)) { |
|
102 | + if (!function_exists($function)) { |
|
103 | 103 | throw new \Exception("Function ".$function." does not exist"); |
104 | 104 | } |
105 | 105 | |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | { |
118 | 118 | $this->value = $value; |
119 | 119 | |
120 | - if (! $this->hideValue()) { |
|
120 | + if (!$this->hideValue()) { |
|
121 | 121 | $this->formField->val($this->value); |
122 | 122 | } |
123 | 123 | } |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | |
152 | 152 | public function getFormField() |
153 | 153 | { |
154 | - if (! $this->hideValue()) { |
|
154 | + if (!$this->hideValue()) { |
|
155 | 155 | if (Request::old($this->name)) { |
156 | 156 | $this->formField->val(Request::old($this->name)); |
157 | 157 | } |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | */ |
166 | 166 | public function hideValue($value = null) |
167 | 167 | { |
168 | - if (! is_null($value)) { |
|
168 | + if (!is_null($value)) { |
|
169 | 169 | $this->hideValue = $value; |
170 | 170 | } |
171 | 171 | |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | */ |
178 | 178 | public function saveIfEmpty($value = null) |
179 | 179 | { |
180 | - if (! is_null($value)) { |
|
180 | + if (!is_null($value)) { |
|
181 | 181 | $this->saveIfEmpty = $value; |
182 | 182 | } |
183 | 183 | |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | */ |
190 | 190 | public function noValidate($value = null) |
191 | 191 | { |
192 | - if (! is_null($value)) { |
|
192 | + if (!is_null($value)) { |
|
193 | 193 | $this->noValidate = $value; |
194 | 194 | } |
195 | 195 |
@@ -80,15 +80,15 @@ discard block |
||
80 | 80 | |
81 | 81 | $field = new Field($this->column, $formElement, $this->config['name'], $this->config['presentation']); |
82 | 82 | |
83 | - if (! empty($this->config['validation'])) { |
|
83 | + if (!empty($this->config['validation'])) { |
|
84 | 84 | $field->setValidationRules($this->config['validation']); |
85 | 85 | } |
86 | 86 | |
87 | - if (! empty($this->config['functions'])) { |
|
87 | + if (!empty($this->config['functions'])) { |
|
88 | 88 | $field->setFunctions($this->config['functions']); |
89 | 89 | } |
90 | 90 | |
91 | - if (! empty($this->config['no_validate']) && $this->config['no_validate'] === true) { |
|
91 | + if (!empty($this->config['no_validate']) && $this->config['no_validate'] === true) { |
|
92 | 92 | $field->noValidate(true); |
93 | 93 | } |
94 | 94 | |
@@ -113,15 +113,15 @@ discard block |
||
113 | 113 | |
114 | 114 | protected function getFormElement() |
115 | 115 | { |
116 | - if (! empty($this->config['form_type'])) { |
|
117 | - if (! in_array($this->config['form_type'], $this->databaseTypeToFormType)) { |
|
118 | - throw new FactoryException("Unknown form type " . $this->config['form_type']); |
|
116 | + if (!empty($this->config['form_type'])) { |
|
117 | + if (!in_array($this->config['form_type'], $this->databaseTypeToFormType)) { |
|
118 | + throw new FactoryException("Unknown form type ".$this->config['form_type']); |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | $formElementType = $this->config['form_type']; |
122 | 122 | } else { |
123 | - if (! array_key_exists($this->column->getType()->getName(), $this->databaseTypeToFormType)) { |
|
124 | - throw new FactoryException("No form type found for database type " . $this->column->getType()->getName()); |
|
123 | + if (!array_key_exists($this->column->getType()->getName(), $this->databaseTypeToFormType)) { |
|
124 | + throw new FactoryException("No form type found for database type ".$this->column->getType()->getName()); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | $formElementType = $this->databaseTypeToFormType[$this->column->getType()->getName()]; |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | |
135 | 135 | $formElement = $this->factory->get($formElementType, []); |
136 | 136 | |
137 | - if (! empty($this->config['attr']) && is_array($this->config['attr'])) { |
|
137 | + if (!empty($this->config['attr']) && is_array($this->config['attr'])) { |
|
138 | 138 | $formElement->attr($this->config['attr']); |
139 | 139 | } |
140 | 140 | |
@@ -145,11 +145,11 @@ discard block |
||
145 | 145 | } |
146 | 146 | |
147 | 147 | if ($formElementType === 'textarea') { |
148 | - $formElement->class('form-control ' . config('anavel-crud.text_editor')); |
|
148 | + $formElement->class('form-control '.config('anavel-crud.text_editor')); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | if (isset($this->config['defaults'])) { |
152 | - if (! is_array($this->config['defaults'])) { |
|
152 | + if (!is_array($this->config['defaults'])) { |
|
153 | 153 | $formElement->val(transcrud($this->config['defaults'])); |
154 | 154 | } else { |
155 | 155 | $defaults = []; |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | |
166 | 166 | public function getPresentation() |
167 | 167 | { |
168 | - return transcrud($this->config['presentation']) ? : ucfirst(str_replace('_', ' ', |
|
168 | + return transcrud($this->config['presentation']) ?: ucfirst(str_replace('_', ' ', |
|
169 | 169 | transcrud($this->config['name']))); |
170 | 170 | } |
171 | 171 | } |
@@ -114,12 +114,12 @@ discard block |
||
114 | 114 | } |
115 | 115 | |
116 | 116 | $customDisplayedColumns = $this->getConfigValue($action, 'display'); |
117 | - $customHiddenColumns = $this->getConfigValue($action, 'hide') ? : []; |
|
117 | + $customHiddenColumns = $this->getConfigValue($action, 'hide') ?: []; |
|
118 | 118 | |
119 | 119 | $columns = array(); |
120 | - if (! empty($customDisplayedColumns) && is_array($customDisplayedColumns)) { |
|
120 | + if (!empty($customDisplayedColumns) && is_array($customDisplayedColumns)) { |
|
121 | 121 | foreach ($customDisplayedColumns as $customColumn) { |
122 | - if (! array_key_exists($customColumn, $tableColumns)) { |
|
122 | + if (!array_key_exists($customColumn, $tableColumns)) { |
|
123 | 123 | throw new AbstractorException("Column ".$customColumn." does not exist on ".$this->getModel()); |
124 | 124 | } |
125 | 125 | |
@@ -144,11 +144,11 @@ discard block |
||
144 | 144 | |
145 | 145 | public function getRelations() |
146 | 146 | { |
147 | - $configRelations = $this->getConfigValue('relations'); |
|
147 | + $configRelations = $this->getConfigValue('relations'); |
|
148 | 148 | |
149 | 149 | $relations = []; |
150 | 150 | |
151 | - if (! empty($configRelations)) { |
|
151 | + if (!empty($configRelations)) { |
|
152 | 152 | foreach ($configRelations as $relationName => $configRelation) { |
153 | 153 | if (is_int($relationName)) { |
154 | 154 | $relationName = $configRelation; |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | |
157 | 157 | $config = []; |
158 | 158 | if ($configRelation !== $relationName) { |
159 | - if (! is_array($configRelation)) { |
|
159 | + if (!is_array($configRelation)) { |
|
160 | 160 | $config['type'] = $configRelation; |
161 | 161 | } else { |
162 | 162 | $config = $configRelation; |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | { |
177 | 177 | $columns = $this->getColumns('list'); |
178 | 178 | |
179 | - $fieldsPresentation = $this->getConfigValue('fields_presentation') ? : []; |
|
179 | + $fieldsPresentation = $this->getConfigValue('fields_presentation') ?: []; |
|
180 | 180 | |
181 | 181 | $fields = array(); |
182 | 182 | foreach ($columns as $name => $column) { |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | { |
207 | 207 | $columns = $this->getColumns('detail'); |
208 | 208 | |
209 | - $fieldsPresentation = $this->getConfigValue('fields_presentation') ? : []; |
|
209 | + $fieldsPresentation = $this->getConfigValue('fields_presentation') ?: []; |
|
210 | 210 | |
211 | 211 | $fields = array(); |
212 | 212 | foreach ($columns as $name => $column) { |
@@ -236,15 +236,15 @@ discard block |
||
236 | 236 | { |
237 | 237 | $columns = $this->getColumns('edit', $withForeignKeys); |
238 | 238 | |
239 | - $fieldsPresentation = $this->getConfigValue('fields_presentation') ? : []; |
|
240 | - $formTypes = $this->getConfigValue('edit', 'form_types') ? : []; |
|
241 | - $validationRules = $this->getConfigValue('edit', 'validation') ? : []; |
|
242 | - $functions = $this->getConfigValue('edit', 'functions') ? : []; |
|
243 | - $defaults = $this->getConfigValue('edit', 'defaults') ? : []; |
|
239 | + $fieldsPresentation = $this->getConfigValue('fields_presentation') ?: []; |
|
240 | + $formTypes = $this->getConfigValue('edit', 'form_types') ?: []; |
|
241 | + $validationRules = $this->getConfigValue('edit', 'validation') ?: []; |
|
242 | + $functions = $this->getConfigValue('edit', 'functions') ?: []; |
|
243 | + $defaults = $this->getConfigValue('edit', 'defaults') ?: []; |
|
244 | 244 | |
245 | 245 | $fields = array(); |
246 | 246 | foreach ($columns as $name => $column) { |
247 | - if (! in_array($name, $this->getReadOnlyColumns())) { |
|
247 | + if (!in_array($name, $this->getReadOnlyColumns())) { |
|
248 | 248 | $presentation = null; |
249 | 249 | if (array_key_exists($name, $fieldsPresentation)) { |
250 | 250 | $presentation = $fieldsPresentation[$name]; |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | ->setConfig($config) |
280 | 280 | ->get(); |
281 | 281 | |
282 | - if (! empty($this->instance) && ! empty($this->instance->getAttribute($name))) { |
|
282 | + if (!empty($this->instance) && !empty($this->instance->getAttribute($name))) { |
|
283 | 283 | $field->setValue($this->instance->getAttribute($name)); |
284 | 284 | } |
285 | 285 | |
@@ -319,14 +319,14 @@ discard block |
||
319 | 319 | { |
320 | 320 | /** @var \ANavallaSuiza\Laravel\Database\Contracts\Manager\ModelManager $modelManager */ |
321 | 321 | $modelManager = App::make('ANavallaSuiza\Laravel\Database\Contracts\Manager\ModelManager'); |
322 | - if (! empty($this->instance)) { |
|
322 | + if (!empty($this->instance)) { |
|
323 | 323 | $item = $this->instance; |
324 | 324 | } else { |
325 | 325 | $item = $modelManager->getModelInstance($this->getModel()); |
326 | 326 | } |
327 | 327 | |
328 | 328 | foreach ($this->getEditFields(true) as $field) { |
329 | - if (! $field->saveIfEmpty() && empty($request->input($field->getName()))) { |
|
329 | + if (!$field->saveIfEmpty() && empty($request->input($field->getName()))) { |
|
330 | 330 | continue; |
331 | 331 | } |
332 | 332 | |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | } |
347 | 347 | } |
348 | 348 | |
349 | - if (! empty($requestValue)) { |
|
349 | + if (!empty($requestValue)) { |
|
350 | 350 | $item->setAttribute( |
351 | 351 | $field->getName(), |
352 | 352 | $field->applyFunctions($requestValue) |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | |
359 | 359 | $this->setInstance($item); |
360 | 360 | |
361 | - if (! empty($relations = $this->getRelations())) { |
|
361 | + if (!empty($relations = $this->getRelations())) { |
|
362 | 362 | foreach ($relations as $relation) { |
363 | 363 | $relation->persist($request); |
364 | 364 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $results = $this->eloquentRelation->getResults(); |
38 | 38 | |
39 | 39 | $results->put('emptyResult', ''); |
40 | - if (! empty($columns)) { |
|
40 | + if (!empty($columns)) { |
|
41 | 41 | $readOnly = [Model::CREATED_AT, Model::UPDATED_AT]; |
42 | 42 | foreach ($results as $key => $result) { |
43 | 43 | foreach ($columns as $columnName => $column) { |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | } |
57 | 57 | |
58 | 58 | $config = [ |
59 | - 'name' => $this->name . '[' . $index . '][' . $columnName . ']', |
|
60 | - 'presentation' => $this->name . ' ' . ucfirst(transcrud($columnName)) . ' [' . $index . ']', |
|
59 | + 'name' => $this->name.'['.$index.']['.$columnName.']', |
|
60 | + 'presentation' => $this->name.' '.ucfirst(transcrud($columnName)).' ['.$index.']', |
|
61 | 61 | 'form_type' => $formType, |
62 | 62 | 'no_validate' => true, |
63 | 63 | 'validation' => null, |
@@ -91,10 +91,10 @@ discard block |
||
91 | 91 | */ |
92 | 92 | public function persist(Request $request) |
93 | 93 | { |
94 | - if (! empty($relationArray = $request->input($this->name))) { |
|
94 | + if (!empty($relationArray = $request->input($this->name))) { |
|
95 | 95 | $currentRelations = $this->eloquentRelation->get()->keyBy($this->eloquentRelation->getParent()->getKeyName()); |
96 | 96 | foreach ($relationArray as $relation) { |
97 | - if (! empty($relation[$this->eloquentRelation->getParent()->getKeyName()]) |
|
97 | + if (!empty($relation[$this->eloquentRelation->getParent()->getKeyName()]) |
|
98 | 98 | && ($currentRelations->has($relation[$this->eloquentRelation->getParent()->getKeyName()])) |
99 | 99 | ) { |
100 | 100 | $relationModel = $currentRelations->get($relation[$this->eloquentRelation->getParent()->getKeyName()]); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $relationModel->setAttribute($fieldKey, $fieldValue); |
113 | 113 | } |
114 | 114 | |
115 | - if (! $shouldBeSkipped) { |
|
115 | + if (!$shouldBeSkipped) { |
|
116 | 116 | $relationModel->save(); |
117 | 117 | } |
118 | 118 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | ]; |
46 | 46 | |
47 | 47 | |
48 | - if (! empty($columns)) { |
|
48 | + if (!empty($columns)) { |
|
49 | 49 | foreach ($columns as $columnName => $column) { |
50 | 50 | if (in_array($columnName, $readOnly, true)) { |
51 | 51 | continue; |
@@ -54,8 +54,8 @@ discard block |
||
54 | 54 | $formType = null; |
55 | 55 | |
56 | 56 | $config = [ |
57 | - 'name' => $this->name . '[' . $columnName . ']', |
|
58 | - 'presentation' => $this->name . ' ' . ucfirst(transcrud($columnName)), |
|
57 | + 'name' => $this->name.'['.$columnName.']', |
|
58 | + 'presentation' => $this->name.' '.ucfirst(transcrud($columnName)), |
|
59 | 59 | 'form_type' => $formType, |
60 | 60 | 'no_validate' => true, |
61 | 61 | 'validation' => null, |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | ->setConfig($config) |
69 | 69 | ->get(); |
70 | 70 | |
71 | - if (! empty($result->id)) { |
|
71 | + if (!empty($result->id)) { |
|
72 | 72 | $field->setValue($result->getAttribute($columnName)); |
73 | 73 | } |
74 | 74 | |
@@ -88,9 +88,9 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function persist(Request $request) |
90 | 90 | { |
91 | - if (! empty($relation = $request->input($this->name))) { |
|
91 | + if (!empty($relation = $request->input($this->name))) { |
|
92 | 92 | $currentRelation = $this->eloquentRelation->getResults(); |
93 | - if (! empty($currentRelation)) { |
|
93 | + if (!empty($currentRelation)) { |
|
94 | 94 | $relationModel = $currentRelation; |
95 | 95 | } else { |
96 | 96 | $relationModel = $this->eloquentRelation->getRelated()->newInstance(); |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | $relationModel->setAttribute($fieldKey, $fieldValue); |
107 | 107 | } |
108 | 108 | |
109 | - if (! $shouldBeSkipped) { |
|
109 | + if (!$shouldBeSkipped) { |
|
110 | 110 | $relationModel->save(); |
111 | 111 | } |
112 | 112 | } |
@@ -69,7 +69,7 @@ |
||
69 | 69 | |
70 | 70 | public function getPresentation() |
71 | 71 | { |
72 | - return $this->presentation ? : ucfirst(str_replace('_', ' ', $this->name)); |
|
72 | + return $this->presentation ?: ucfirst(str_replace('_', ' ', $this->name)); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | public function getType() |
@@ -103,7 +103,7 @@ |
||
103 | 103 | { |
104 | 104 | $results = $this->eloquentRelation->getResults(); |
105 | 105 | |
106 | - if (! empty($results)) { |
|
106 | + if (!empty($results)) { |
|
107 | 107 | $field->setValue($results->getKey()); |
108 | 108 | } |
109 | 109 | return $field; |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | */ |
29 | 29 | public function persist(Request $request) |
30 | 30 | { |
31 | - if (! empty($selectArray = $request->input($this->name))) { |
|
31 | + if (!empty($selectArray = $request->input($this->name))) { |
|
32 | 32 | /** @var \ANavallaSuiza\Laravel\Database\Contracts\Repository\Repository $repo */ |
33 | 33 | $repo = $this->modelManager->getRepository(get_class($this->eloquentRelation->getRelated())); |
34 | 34 | |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | $result->save(); |
50 | 50 | } |
51 | 51 | |
52 | - if (! $missing->isEmpty()) { |
|
52 | + if (!$missing->isEmpty()) { |
|
53 | 53 | foreach ($missing as $result) { |
54 | 54 | $result->$keyName = null; |
55 | 55 | $result->save(); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | { |
83 | 83 | $results = $this->eloquentRelation->getResults(); |
84 | 84 | |
85 | - if (! $results->isEmpty()) { |
|
85 | + if (!$results->isEmpty()) { |
|
86 | 86 | $values = []; |
87 | 87 | |
88 | 88 | foreach ($results as $result) { |