@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | |
63 | 63 | $data = compact('controllerName', 'table', 'pk', 'coloms', 'cols', 'formArrayString', 'joinList'); |
64 | 64 | |
65 | - return '<?php ' . view('CbModulesGen::controller_stub', $data)->render(); |
|
65 | + return '<?php '.view('CbModulesGen::controller_stub', $data)->render(); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
@@ -73,8 +73,8 @@ discard block |
||
73 | 73 | */ |
74 | 74 | private static function addCol($table, $coloms, $pk) |
75 | 75 | { |
76 | - $coloms_col = array_filter($coloms, function ($field) { |
|
77 | - return (! FieldDetector::isExceptional($field) && ! FieldDetector::isPassword($field)); |
|
76 | + $coloms_col = array_filter($coloms, function($field) { |
|
77 | + return (!FieldDetector::isExceptional($field) && !FieldDetector::isPassword($field)); |
|
78 | 78 | }); |
79 | 79 | $coloms_col = array_slice($coloms_col, 0, 10); |
80 | 80 | |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | { |
110 | 110 | $jointable = str_replace(['id_', '_id'], '', $field); |
111 | 111 | |
112 | - if (! Schema::hasTable($jointable)) { |
|
112 | + if (!Schema::hasTable($jointable)) { |
|
113 | 113 | return [$cols, $joinList]; |
114 | 114 | } |
115 | 115 | $joincols = \Schema::getColumnListing($jointable); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | |
51 | 51 | $props = array_get(DefaultFormConfigs::defaultConfigForFields($table), FieldDetector::detect($colName), null); |
52 | 52 | |
53 | - if($props !== null){ |
|
53 | + if ($props !== null) { |
|
54 | 54 | $input = array_merge($input, $props); |
55 | 55 | } |
56 | 56 | |
@@ -92,8 +92,8 @@ discard block |
||
92 | 92 | $arr = array_get([ |
93 | 93 | 'string' => $default, |
94 | 94 | 'text' => ['textarea', "string|min:5", []], |
95 | - 'date' => ['date', "date", ['php_format' => 'M, d Y', 'datepicker_format' => 'M, dd YYYY',]], |
|
96 | - 'datetime' => ['datetime', "date_format:Y-m-d H:i:s", ['php_format' => 'M, d Y H:i',]], |
|
95 | + 'date' => ['date', "date", ['php_format' => 'M, d Y', 'datepicker_format' => 'M, dd YYYY', ]], |
|
96 | + 'datetime' => ['datetime', "date_format:Y-m-d H:i:s", ['php_format' => 'M, d Y H:i', ]], |
|
97 | 97 | 'time' => ['time', 'date_format:H:i:s', []], |
98 | 98 | 'double' => ['money', "integer|min:0", []], |
99 | 99 | 'int' => ['number', 'integer|min:0', []], |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | private static function handleForeignKey($field) |
114 | 114 | { |
115 | 115 | $jointable = str_replace(['id_', '_id'], '', $field); |
116 | - if (! Schema::hasTable($jointable)) { |
|
116 | + if (!Schema::hasTable($jointable)) { |
|
117 | 117 | return ['', '']; |
118 | 118 | } |
119 | 119 | $options = [ |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | return $colsItem; |
68 | 68 | } |
69 | 69 | foreach ($colsItem as $i => $form) { |
70 | - if ( empty($form['options']) !== false && $form['options'] !== '[]') { |
|
70 | + if (empty($form['options']) !== false && $form['options'] !== '[]') { |
|
71 | 71 | @eval("\$options = $form[options];"); |
72 | 72 | @$colsItem[$i]['options'] = $options; |
73 | 73 | } else { |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | continue; |
110 | 110 | } |
111 | 111 | |
112 | - $s = str_replace("'", '',$s); |
|
112 | + $s = str_replace("'", '', $s); |
|
113 | 113 | list($key, $val) = explode('=>', $s); |
114 | 114 | $colInnerItem[$key] = $val; |
115 | 115 |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | { |
19 | 19 | $row = $data->first(); |
20 | 20 | |
21 | - if (! $row) { |
|
21 | + if (!$row) { |
|
22 | 22 | return ApiResponder::makeResult(0, 'There is no data found !'); |
23 | 23 | } |
24 | 24 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | self::passwordError($posts, $ctrl); |
41 | 41 | } |
42 | 42 | |
43 | - if (! $required && $used && $value) { |
|
43 | + if (!$required && $used && $value) { |
|
44 | 44 | self::passwordError($posts, $ctrl); |
45 | 45 | } |
46 | 46 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | { |
70 | 70 | $result = ApiResponder::makeResult(1, 'success'); |
71 | 71 | |
72 | - return array_merge($result, (array)$rows); |
|
72 | + return array_merge($result, (array) $rows); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | $rows->$k = asset($v); |
84 | 84 | } |
85 | 85 | |
86 | - if (! in_array($k, $responsesFields)) { |
|
86 | + if (!in_array($k, $responsesFields)) { |
|
87 | 87 | unset($rows->$k); |
88 | 88 | } |
89 | 89 | } |
@@ -60,7 +60,7 @@ |
||
60 | 60 | { |
61 | 61 | $methods = (new \ReflectionClass($ctrl))->getMethods(\ReflectionMethod::IS_PUBLIC); |
62 | 62 | |
63 | - return array_filter($methods, function ($method) { |
|
63 | + return array_filter($methods, function($method) { |
|
64 | 64 | return ($method->class !== 'Illuminate\Routing\Controller' && $method->name !== 'getIndex'); |
65 | 65 | }); |
66 | 66 | } |
@@ -58,7 +58,7 @@ |
||
58 | 58 | */ |
59 | 59 | private function limitRows($data) |
60 | 60 | { |
61 | - $num = (int)$data['limit'] ?: 10; |
|
61 | + $num = (int) $data['limit'] ?: 10; |
|
62 | 62 | $this->rows->take($num); |
63 | 63 | } |
64 | 64 |
@@ -27,7 +27,7 @@ |
||
27 | 27 | $format_validation[] = $this->existOrUnique($config, $type); |
28 | 28 | } elseif (in_array($type, ['date_format', 'digits_between', 'in', 'mimes', 'min', 'max', 'not_in'])) { |
29 | 29 | $format_validation[] = $type.':'.$config; |
30 | - } elseif (! in_array($type, $typeExcept)) { |
|
30 | + } elseif (!in_array($type, $typeExcept)) { |
|
31 | 31 | $format_validation[] = $type; |
32 | 32 | } |
33 | 33 |
@@ -94,11 +94,11 @@ discard block |
||
94 | 94 | $component_name = $component->component_name; |
95 | 95 | $area_name = $component->area_name; |
96 | 96 | $config = json_decode($component->config); |
97 | - if (! $config) { |
|
97 | + if (!$config) { |
|
98 | 98 | return response()->json(compact('componentID', 'layout')); |
99 | 99 | } |
100 | 100 | foreach ($config as $key => $value) { |
101 | - if (! $value) { |
|
101 | + if (!$value) { |
|
102 | 102 | continue; |
103 | 103 | } |
104 | 104 | $command = 'showFunction'; |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | 'name' => 'Untitled', |
127 | 127 | ]; |
128 | 128 | |
129 | - if (! $data['created_at'] && Schema::hasColumn('cms_statistic_components', 'created_at')) { |
|
129 | + if (!$data['created_at'] && Schema::hasColumn('cms_statistic_components', 'created_at')) { |
|
130 | 130 | $data['created_at'] = YmdHis(); |
131 | 131 | } |
132 | 132 |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | public function getBuilder($id_cms_statistics) |
71 | 71 | { |
72 | - CRUDBooster::allowOnlySuperAdmin(); |
|
72 | + CRUDBooster::allowOnlySuperAdmin(); |
|
73 | 73 | $this->cbLoader(); |
74 | 74 | |
75 | 75 | $page_title = 'Statistic Builder'; |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | |
150 | 150 | public function getEditComponent($componentID) |
151 | 151 | { |
152 | - CRUDBooster::allowOnlySuperAdmin(); |
|
152 | + CRUDBooster::allowOnlySuperAdmin(); |
|
153 | 153 | $this->cbLoader(); |
154 | 154 | |
155 | 155 | $component_row = CRUDBooster::first('cms_statistic_components', ['componentID' => $componentID]); |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | |
174 | 174 | public function getDeleteComponent($id) |
175 | 175 | { |
176 | - CRUDBooster::allowOnlySuperAdmin(); |
|
176 | + CRUDBooster::allowOnlySuperAdmin(); |
|
177 | 177 | |
178 | 178 | DB::table('cms_statistic_components')->where('componentID', $id)->delete(); |
179 | 179 |
@@ -24,15 +24,15 @@ discard block |
||
24 | 24 | { |
25 | 25 | $this->cbLoader(); |
26 | 26 | |
27 | - $columns = array_filter(\Schema::getColumnListing($table), function ($colName) { |
|
28 | - return ! (in_array($colName, ['created_at', 'deleted_at', 'updated_at'])); |
|
27 | + $columns = array_filter(\Schema::getColumnListing($table), function($colName) { |
|
28 | + return !(in_array($colName, ['created_at', 'deleted_at', 'updated_at'])); |
|
29 | 29 | }); |
30 | 30 | |
31 | 31 | $result = []; |
32 | 32 | foreach ($columns as $colName) { |
33 | 33 | $result[] = ['name' => $colName, 'type' => $this->getFieldType($colName, $table)]; |
34 | 34 | |
35 | - if (! in_array($type, ['list', 'detail']) || ! starts_with($colName, 'id_')) { |
|
35 | + if (!in_array($type, ['list', 'detail']) || !starts_with($colName, 'id_')) { |
|
36 | 36 | continue; |
37 | 37 | } |
38 | 38 | $relatedTable = str_after($colName, 'id_'); |
@@ -73,8 +73,8 @@ discard block |
||
73 | 73 | private function addRelatedTableColTypes($table, $result) |
74 | 74 | { |
75 | 75 | $columns = DB::getSchemaBuilder()->getColumnListing($table); |
76 | - $columns = array_filter($columns, function ($col) { |
|
77 | - return ! FieldDetector::isExceptional($col) && !starts_with($col, 'id_'); |
|
76 | + $columns = array_filter($columns, function($col) { |
|
77 | + return !FieldDetector::isExceptional($col) && !starts_with($col, 'id_'); |
|
78 | 78 | }); |
79 | 79 | |
80 | 80 | foreach ($columns as $col) { |