@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | |
6 | 6 | $namespace = '\crocodicstudio\crudbooster\controllers'; |
7 | 7 | /* ROUTER FOR UPLOADS */ |
8 | -Route::group(['middleware' => ['web'], 'namespace' => $namespace], function () { |
|
8 | +Route::group(['middleware' => ['web'], 'namespace' => $namespace], function() { |
|
9 | 9 | Route::get('uploads/{one?}/{two?}/{three?}/{four?}/{five?}', ['uses' => 'FileController@getPreview', 'as' => 'fileControllerPreview']); |
10 | 10 | }); |
11 | 11 | |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | 'middleware' => ['web', CBBackend::class], |
15 | 15 | 'prefix' => cbAdminPath(), |
16 | 16 | 'namespace' => ctrlNamespace(), |
17 | -], function () { |
|
17 | +], function() { |
|
18 | 18 | CbRouter::routeController('users', 'AdminUsersController'); |
19 | 19 | try { |
20 | 20 | $modules = DB::table('cms_moduls')->where('path', '!=', '')->where('controller', '!=', '')->where('is_protected', 0)->get(); |
@@ -30,10 +30,10 @@ discard block |
||
30 | 30 | 'middleware' => ['web', \crocodicstudio\crudbooster\middlewares\CBSuperadmin::class], |
31 | 31 | 'prefix' => cbAdminPath(), |
32 | 32 | 'namespace' => $namespace, |
33 | -], function () { |
|
34 | - Route::post('{module}/do-upload-import-data', ['uses' => 'FileController@uploadImportData', 'as' => 'UploadImportData',]); |
|
35 | - Route::post('{module}/upload-summernote', ['uses' => 'FileController@uploadSummernote', 'as' => 'UploadImportData',]); |
|
36 | - Route::post('{module}/upload-file', ['uses' => 'FileController@uploadFile', 'as' => 'UploadImportData',]); |
|
37 | - Route::post('{module}/done-import', ['uses' => 'FileController@doneImport', 'as' => 'doneImportData',]); |
|
33 | +], function() { |
|
34 | + Route::post('{module}/do-upload-import-data', ['uses' => 'FileController@uploadImportData', 'as' => 'UploadImportData', ]); |
|
35 | + Route::post('{module}/upload-summernote', ['uses' => 'FileController@uploadSummernote', 'as' => 'UploadImportData', ]); |
|
36 | + Route::post('{module}/upload-file', ['uses' => 'FileController@uploadFile', 'as' => 'UploadImportData', ]); |
|
37 | + Route::post('{module}/done-import', ['uses' => 'FileController@doneImport', 'as' => 'doneImportData', ]); |
|
38 | 38 | }); |
39 | 39 |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | public function uploadImportData($file) |
51 | 51 | { |
52 | 52 | $dir = 'uploads/'.date('Y-m'); |
53 | - $filename = md5(str_random(5)).'.'. $file->getClientOriginalExtension(); |
|
53 | + $filename = md5(str_random(5)).'.'.$file->getClientOriginalExtension(); |
|
54 | 54 | |
55 | 55 | //Create Directory Monthly |
56 | 56 | Storage::makeDirectory($dir); |
@@ -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 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | $file = base64_decode(request('file')); |
85 | 85 | $file = 'storage'.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.$file; |
86 | - $rows = Excel::load($file, function ($reader) { |
|
86 | + $rows = Excel::load($file, function($reader) { |
|
87 | 87 | })->get(); |
88 | 88 | |
89 | 89 | //$data_import_column = []; |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | foreach ($select_column as $sk => $s) { |
129 | 129 | $colname = $table_columns[$sk]; |
130 | 130 | |
131 | - if (! DbInspector::isForeignKey($colname) || intval($value->$s)) { |
|
131 | + if (!DbInspector::isForeignKey($colname) || intval($value->$s)) { |
|
132 | 132 | $a[$colname] = $value->$s; |
133 | 133 | continue; |
134 | 134 | } |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | $relation_moduls = DB::table('cms_moduls')->where('table_name', $relation_table)->first(); |
179 | 179 | |
180 | 180 | $relation_class = __NAMESPACE__.'\\'.$relation_moduls->controller; |
181 | - if (! class_exists($relation_class)) { |
|
181 | + if (!class_exists($relation_class)) { |
|
182 | 182 | $relation_class = ctrlNamespace().'\\'.$relation_moduls->controller; |
183 | 183 | } |
184 | 184 |
@@ -63,7 +63,7 @@ |
||
63 | 63 | private static function getControllerMethods($ctrl) |
64 | 64 | { |
65 | 65 | $controller_methods = (new \ReflectionClass($ctrl))->getMethods(\ReflectionMethod::IS_PUBLIC); |
66 | - $controller_methods = array_filter($controller_methods, function ($method) { |
|
66 | + $controller_methods = array_filter($controller_methods, function($method) { |
|
67 | 67 | return ($method->class !== 'Illuminate\Routing\Controller' && $method->name !== 'getIndex'); |
68 | 68 | }); |
69 | 69 |
@@ -15,7 +15,7 @@ |
||
15 | 15 | { |
16 | 16 | $this->table = 'cms_moduls'; |
17 | 17 | $this->primaryKey = 'id'; |
18 | - $this->titleField = 'name' ; |
|
18 | + $this->titleField = 'name'; |
|
19 | 19 | $this->limit = 100; |
20 | 20 | $this->buttonAdd = false; |
21 | 21 | $this->buttonExport = false; |
@@ -23,12 +23,12 @@ discard block |
||
23 | 23 | $this->cbLoader(); |
24 | 24 | $selectedIds = request('checkbox'); |
25 | 25 | $btnName = request('button_name'); |
26 | - if (! $selectedIds) { |
|
26 | + if (!$selectedIds) { |
|
27 | 27 | CRUDBooster::redirect($_SERVER['HTTP_REFERER'], cbTrans('at_least_one_row'), 'warning'); |
28 | 28 | } |
29 | 29 | if ($btnName == 'delete') { |
30 | 30 | (new DataRemover($this))->doDeleteWithHook($selectedIds); |
31 | - $this->insertLog('log_delete', implode(',', $selectedIds) . ' - '. $this->table); |
|
31 | + $this->insertLog('log_delete', implode(',', $selectedIds).' - '.$this->table); |
|
32 | 32 | backWithMsg(cbTrans('alert_delete_selected_success')); |
33 | 33 | } |
34 | 34 | |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | $message = cbTrans('alert_action', ['action' => $action]); |
48 | 48 | |
49 | 49 | if ($this->actionButtonSelected($id_selected, $button_name) === false) { |
50 | - $message = ! empty($this->alert['message']) ? $this->alert['message'] : 'Error'; |
|
51 | - $type = ! empty($this->alert['type']) ? $this->alert['type'] : 'danger'; |
|
50 | + $message = !empty($this->alert['message']) ? $this->alert['message'] : 'Error'; |
|
51 | + $type = !empty($this->alert['type']) ? $this->alert['type'] : 'danger'; |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | backWithMsg($message, $type); |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | |
68 | 68 | $this->findRow($id)->update([$column => null]); |
69 | 69 | |
70 | - $this->insertLog('log_delete_image', $id . ' - '. $this->table); |
|
70 | + $this->insertLog('log_delete_image', $id.' - '.$this->table); |
|
71 | 71 | |
72 | 72 | CRUDBooster::redirect(Request::server('HTTP_REFERER'), cbTrans('alert_delete_data_success'), 'success'); |
73 | 73 | } |