@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | */ |
68 | 68 | public function validateForImport($file) |
69 | 69 | { |
70 | - return Validator::make(['extension' => $file->getClientOriginalExtension(),], ['extension' => 'in:xls,xlsx,csv']); |
|
70 | + return Validator::make(['extension' => $file->getClientOriginalExtension(), ], ['extension' => 'in:xls,xlsx,csv']); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | |
83 | 83 | $file = base64_decode(request('file')); |
84 | 84 | $file = 'storage'.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.$file; |
85 | - $rows = Excel::load($file, function ($reader) { |
|
85 | + $rows = Excel::load($file, function($reader) { |
|
86 | 86 | })->get(); |
87 | 87 | |
88 | 88 | //$data_import_column = []; |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | foreach ($selectColumn as $sk => $s) { |
128 | 128 | $colname = $table_columns[$sk]; |
129 | 129 | |
130 | - if (! DbInspector::isForeignKey($colname) || intval($value->$s)) { |
|
130 | + if (!DbInspector::isForeignKey($colname) || intval($value->$s)) { |
|
131 | 131 | $a[$colname] = $value->$s; |
132 | 132 | continue; |
133 | 133 | } |
@@ -175,10 +175,10 @@ discard block |
||
175 | 175 | { |
176 | 176 | $module = ModulesRepo::getByTableName($table); |
177 | 177 | if (is_null($module)) { |
178 | - return ; |
|
178 | + return; |
|
179 | 179 | } |
180 | 180 | $relation_class = __NAMESPACE__.'\\'.$module->controller; |
181 | - if (! class_exists($relation_class)) { |
|
181 | + if (!class_exists($relation_class)) { |
|
182 | 182 | $relation_class = ctrlNamespace().'\\'.$module->controller; |
183 | 183 | } |
184 | 184 |
@@ -25,8 +25,8 @@ discard block |
||
25 | 25 | $this->checkLaravelVersion(); |
26 | 26 | $this->checkPHPversion(); |
27 | 27 | |
28 | - $extensions = ['mbstring', 'openssl', 'pdo', 'tokenizer', 'xml', 'gd', 'fileinfo',]; |
|
29 | - array_walk($extensions, function ($ext){ |
|
28 | + $extensions = ['mbstring', 'openssl', 'pdo', 'tokenizer', 'xml', 'gd', 'fileinfo', ]; |
|
29 | + array_walk($extensions, function($ext) { |
|
30 | 30 | $this->chechExtension($ext); |
31 | 31 | }); |
32 | 32 | |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | private function chechExtension($extension) |
76 | 76 | { |
77 | - if (! extension_loaded($extension)) { |
|
77 | + if (!extension_loaded($extension)) { |
|
78 | 78 | $this->console->info($extension.' extension: [Bad]'); |
79 | 79 | return $this->requirements = false; |
80 | 80 | } |
@@ -44,7 +44,7 @@ |
||
44 | 44 | { |
45 | 45 | $ctrl->hookValidate(); |
46 | 46 | |
47 | - if (! $ctrl->validate) { |
|
47 | + if (!$ctrl->validate) { |
|
48 | 48 | return true; |
49 | 49 | } // hook have to return true |
50 | 50 | //todo : translation |
@@ -149,7 +149,7 @@ |
||
149 | 149 | protected function genericLoader() |
150 | 150 | { |
151 | 151 | $this->cbInit(); |
152 | - $this->primaryKey = $this->primaryKey?: DbInspector::findPk($this->table); |
|
152 | + $this->primaryKey = $this->primaryKey ?: DbInspector::findPk($this->table); |
|
153 | 153 | $this->data_inputan = $this->form; |
154 | 154 | $this->data['pk'] = $this->primaryKey; |
155 | 155 | $this->data['hide_form'] = $this->hide_form; |
@@ -44,13 +44,13 @@ discard block |
||
44 | 44 | { |
45 | 45 | $path = request('path') ? base64_decode(request('path')) : 'uploads'; |
46 | 46 | $file = Request::file('userfile'); |
47 | - if (! $file) { |
|
47 | + if (!$file) { |
|
48 | 48 | return null; |
49 | 49 | } |
50 | 50 | |
51 | 51 | $fileName = $file->getClientOriginalName(); |
52 | 52 | |
53 | - if (! FieldDetector::isUploadField($file->getClientOriginalExtension())) { |
|
53 | + if (!FieldDetector::isUploadField($file->getClientOriginalExtension())) { |
|
54 | 54 | backWithMsg('The file '.$fileName.' type is not allowed!', 'warning'); |
55 | 55 | } |
56 | 56 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | public function getDeleteFile($file) |
71 | 71 | { |
72 | 72 | $file = base64_decode($file); |
73 | - if(Storage::delete($file)) |
|
73 | + if (Storage::delete($file)) |
|
74 | 74 | backWithMsg('The file has been deleted!'); |
75 | 75 | |
76 | 76 | backWithMsg('The file did not deleted!', 'warning'); |
@@ -70,8 +70,9 @@ |
||
70 | 70 | public function getDeleteFile($file) |
71 | 71 | { |
72 | 72 | $file = base64_decode($file); |
73 | - if(Storage::delete($file)) |
|
74 | - backWithMsg('The file has been deleted!'); |
|
73 | + if(Storage::delete($file)) { |
|
74 | + backWithMsg('The file has been deleted!'); |
|
75 | + } |
|
75 | 76 | |
76 | 77 | backWithMsg('The file did not deleted!', 'warning'); |
77 | 78 | } |
@@ -21,7 +21,7 @@ |
||
21 | 21 | CbRouter::routeController($module->path, $module->controller); |
22 | 22 | } |
23 | 23 | } catch (Exception $e) { |
24 | - dd($e); |
|
24 | + dd($e); |
|
25 | 25 | } |
26 | 26 | }); |
27 | 27 |
@@ -4,11 +4,11 @@ discard block |
||
4 | 4 | |
5 | 5 | $namespace = cbControllersNS(); |
6 | 6 | /* ROUTER FOR UPLOADS */ |
7 | -Route::group(['middleware' => ['web'], 'namespace' => $namespace], function () { |
|
7 | +Route::group(['middleware' => ['web'], 'namespace' => $namespace], function() { |
|
8 | 8 | Route::get('uploads/{one?}/{two?}/{three?}/{four?}/{five?}', ['uses' => 'FileController@getPreview', 'as' => 'fileControllerPreview']); |
9 | 9 | }); |
10 | 10 | |
11 | -Route::group(['middleware' => ['web']], function () { |
|
11 | +Route::group(['middleware' => ['web']], function() { |
|
12 | 12 | Route::get(cbAdminPath(), '\crocodicstudio\crudbooster\controllers\DashboardController@index')->name('CbDashboard'); |
13 | 13 | }); |
14 | 14 | |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | 'middleware' => ['web', \crocodicstudio\crudbooster\CBCoreModule\middlewares\CBBackend::class], |
18 | 18 | 'prefix' => cbAdminPath(), |
19 | 19 | 'namespace' => ctrlNamespace(), |
20 | -], function () { |
|
20 | +], function() { |
|
21 | 21 | try { |
22 | 22 | $argv = request()->server('argv'); |
23 | 23 | if (is_array($argv) && isset($argv[1]) && !starts_with($argv[1], 'route:')) { |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | 'middleware' => ['web', \crocodicstudio\crudbooster\CBCoreModule\middlewares\CBSuperadmin::class], |
38 | 38 | 'prefix' => cbAdminPath(), |
39 | 39 | 'namespace' => $namespace, |
40 | -], function () { |
|
40 | +], function() { |
|
41 | 41 | Route::post('{module}/do-upload-import-data', 'FileController@uploadImportData')->name('UploadImportData'); |
42 | 42 | Route::post('{module}/upload-summernote', 'FileController@uploadSummernote')->name('UploadImportData'); |
43 | 43 | Route::post('{module}/upload-file', 'FileController@uploadFile')->name('UploadImportData'); |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | } |
61 | 61 | ApiResponder::send($result, $posts, $this->ctrl); |
62 | 62 | } elseif (in_array($actionType, ['save_add', 'save_edit'])) { |
63 | - $rowAssign = array_filter($input_validator, function ($column) use ($table) { |
|
63 | + $rowAssign = array_filter($input_validator, function($column) use ($table) { |
|
64 | 64 | return Schema::hasColumn($table, $column); |
65 | 65 | }, ARRAY_FILTER_USE_KEY); |
66 | 66 | |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | */ |
114 | 114 | private function filterRows($data, $parameters, $posts, $table, $typeExcept) |
115 | 115 | { |
116 | - $data->where(function ($w) use ($parameters, $posts, $table, $typeExcept) { |
|
116 | + $data->where(function($w) use ($parameters, $posts, $table, $typeExcept) { |
|
117 | 117 | foreach ($parameters as $param) { |
118 | 118 | $name = $param['name']; |
119 | 119 | $type = $param['type']; |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | */ |
252 | 252 | private function applyLike($data, $search_in, $value) |
253 | 253 | { |
254 | - $data->where(function ($w) use ($search_in, $value) { |
|
254 | + $data->where(function($w) use ($search_in, $value) { |
|
255 | 255 | foreach ($search_in as $k => $field) { |
256 | 256 | $method = 'orWhere'; |
257 | 257 | if ($k == 0) { |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | */ |
273 | 273 | private function joinRelatedTables($table, $responsesFields, $name, $data, $nameTmp) |
274 | 274 | { |
275 | - if (! DbInspector::isForeignKey($name)) { |
|
275 | + if (!DbInspector::isForeignKey($name)) { |
|
276 | 276 | return $nameTmp; |
277 | 277 | } |
278 | 278 | $joinTable = DbInspector::getRelatedTableName($name); |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | private function doValidation($inputValidator, $dataValidation, $posts) |
298 | 298 | { |
299 | 299 | $validator = Validator::make($inputValidator, $dataValidation); |
300 | - if (! $validator->fails()) { |
|
300 | + if (!$validator->fails()) { |
|
301 | 301 | return true; |
302 | 302 | } |
303 | 303 | $message = $validator->errors()->all(); |
@@ -313,11 +313,11 @@ discard block |
||
313 | 313 | */ |
314 | 314 | private function filterRedundantResp($responses) |
315 | 315 | { |
316 | - $responses = array_filter($responses, function ($resp) { |
|
317 | - return ! ($resp['name'] == 'ref_id' || $resp['type'] == 'custom'); |
|
316 | + $responses = array_filter($responses, function($resp) { |
|
317 | + return !($resp['name'] == 'ref_id' || $resp['type'] == 'custom'); |
|
318 | 318 | }); |
319 | 319 | |
320 | - $responses = array_filter($responses, function ($resp) { |
|
320 | + $responses = array_filter($responses, function($resp) { |
|
321 | 321 | return (intval($resp['used']) != 0 || DbInspector::isForeignKey($resp['name'])); |
322 | 322 | }); |
323 | 323 | |
@@ -332,15 +332,15 @@ discard block |
||
332 | 332 | private function validateParams($parameters, $table) |
333 | 333 | { |
334 | 334 | $posts = request()->all(); |
335 | - if (! $parameters) { |
|
335 | + if (!$parameters) { |
|
336 | 336 | return ['', '']; |
337 | 337 | } |
338 | 338 | $typeExcept = ['password', 'ref', 'base64_file', 'custom', 'search']; |
339 | 339 | $inputValidator = []; |
340 | 340 | $dataValidation = []; |
341 | 341 | |
342 | - $parameters = array_filter($parameters, function ($param){ |
|
343 | - return !(is_string($param['config'])&& !starts_with($param['config'], '*')); |
|
342 | + $parameters = array_filter($parameters, function($param) { |
|
343 | + return !(is_string($param['config']) && !starts_with($param['config'], '*')); |
|
344 | 344 | }); |
345 | 345 | |
346 | 346 | foreach ($parameters as $param) { |
@@ -39,7 +39,7 @@ |
||
39 | 39 | |
40 | 40 | public function myPhoto() : string |
41 | 41 | { |
42 | - $photo = $this->photo ?: 'vendor/crudbooster/avatar.jpg'; |
|
42 | + $photo = $this->photo ?: 'vendor/crudbooster/avatar.jpg'; |
|
43 | 43 | return asset($photo); |
44 | 44 | } |
45 | 45 |
@@ -30,7 +30,7 @@ |
||
30 | 30 | |
31 | 31 | $user = $this->usersRepo->findByMail(request("email")); |
32 | 32 | |
33 | - if (! auth('cbAdmin')->attempt($credentials)) { |
|
33 | + if (!auth('cbAdmin')->attempt($credentials)) { |
|
34 | 34 | $resp = redirect()->route('getLogin')->with('message', cbTrans('alert_password_wrong')); |
35 | 35 | sendAndTerminate($resp); |
36 | 36 | } |