@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | { |
7 | 7 | public static function getSetting($name) |
8 | 8 | { |
9 | - return cache()->rememberForever('crudbooster_setting_'.$name, function () use($name) { |
|
9 | + return cache()->rememberForever('crudbooster_setting_'.$name, function() use($name) { |
|
10 | 10 | return self::table()->where('name', $name)->first()->content; |
11 | 11 | }); |
12 | 12 | } |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | { |
16 | 16 | foreach ($data as $row) { |
17 | 17 | $count = self::table()->where('name', $row['name'])->count(); |
18 | - if (! $count) { |
|
18 | + if (!$count) { |
|
19 | 19 | self::table()->insert($row); |
20 | 20 | continue; |
21 | 21 | } |
@@ -77,7 +77,7 @@ |
||
77 | 77 | |
78 | 78 | private function validateForgotPass() |
79 | 79 | { |
80 | - $validator = \Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users',]); |
|
80 | + $validator = \Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users', ]); |
|
81 | 81 | |
82 | 82 | if ($validator->fails()) { |
83 | 83 | $message = $validator->errors()->all(); |
@@ -22,9 +22,9 @@ |
||
22 | 22 | return redirect(url($adminPath.'/login'))->with('message', cbTrans('not_logged_in')); |
23 | 23 | } |
24 | 24 | |
25 | - if(!CRUDBooster::isSuperadmin()) { |
|
25 | + if (!CRUDBooster::isSuperadmin()) { |
|
26 | 26 | event('cb.unauthorizedTryToSuperAdminArea', [cbUser(), request()->fullUrl()]); |
27 | - return redirect($adminPath)->with(['message'=> cbTrans('denied_access'),'message_type'=>'warning']); |
|
27 | + return redirect($adminPath)->with(['message'=> cbTrans('denied_access'), 'message_type'=>'warning']); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | return $next($request); |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | { |
33 | 33 | $filterColumn = $this->filterFalsyValues($filterColumn); |
34 | 34 | |
35 | - $this->query->where(function ($query) use ($filterColumn) { |
|
35 | + $this->query->where(function($query) use ($filterColumn) { |
|
36 | 36 | foreach ($filterColumn as $key => $fc) { |
37 | 37 | |
38 | 38 | $value = array_get($fc, 'value'); |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | case 'in': |
56 | 56 | case 'not in': |
57 | 57 | $value = explode(',', $value); |
58 | - if (! empty($value)) { |
|
58 | + if (!empty($value)) { |
|
59 | 59 | $query->whereIn($key, $value); |
60 | 60 | } |
61 | 61 | break; |
@@ -97,11 +97,11 @@ discard block |
||
97 | 97 | */ |
98 | 98 | private function filterFalsyValues($filterColumn) |
99 | 99 | { |
100 | - return array_filter($filterColumn, function ($fc) { |
|
100 | + return array_filter($filterColumn, function($fc) { |
|
101 | 101 | $value = array_get($fc, 'value'); |
102 | 102 | $type = array_get($fc, 'type'); |
103 | 103 | |
104 | - if (($type == 'between') || ! $value || ! $type) { |
|
104 | + if (($type == 'between') || !$value || !$type) { |
|
105 | 105 | return false; |
106 | 106 | } |
107 | 107 |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | //LISTING INDEX HTML |
111 | 111 | $addAction = $this->cb->data['addAction']; |
112 | 112 | |
113 | - if (! empty($this->cb->sub_module)) { |
|
113 | + if (!empty($this->cb->sub_module)) { |
|
114 | 114 | $addAction = $this->_handleSubModules($addAction); |
115 | 115 | } |
116 | 116 | |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | return CRUDBooster::adminPath($module['path']).'?parent_table='.$parentTable.'&parent_columns=' |
159 | 159 | .$module['parent_columns'].'&parent_columns_alias=' |
160 | 160 | .$module['parent_columns_alias'].'&parent_id=[' |
161 | - .(! isset($module['custom_parent_id']) ? "id" : $module['custom_parent_id']) |
|
161 | + .(!isset($module['custom_parent_id']) ? "id" : $module['custom_parent_id']) |
|
162 | 162 | .']&return_url='.urlencode(request()->fullUrl()).'&foreign_key=' |
163 | 163 | .$module['foreign_key'].'&label='.urlencode($module['label']); |
164 | 164 | } |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function handle($query, $table, $orderBy, $primaryKey) |
14 | 14 | { |
15 | - if (! $orderBy) { |
|
15 | + if (!$orderBy) { |
|
16 | 16 | $query->orderby($table.'.'.$primaryKey, 'desc'); |
17 | 17 | return; |
18 | 18 | } |
@@ -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'); |
@@ -24,9 +24,9 @@ |
||
24 | 24 | public static function getCurrentModule() |
25 | 25 | { |
26 | 26 | $modulePath = self::getModulePath(); |
27 | - return cache()->remember('crudbooster_modules_'.$modulePath, 2, function () use ($modulePath) { |
|
27 | + return cache()->remember('crudbooster_modules_'.$modulePath, 2, function() use ($modulePath) { |
|
28 | 28 | $module = app('CbModulesRegistery')->getModule($modulePath); |
29 | - return $module?: ModulesRepo::getByPath($modulePath); |
|
29 | + return $module ?: ModulesRepo::getByPath($modulePath); |
|
30 | 30 | }); |
31 | 31 | } |
32 | 32 |
@@ -15,11 +15,11 @@ discard block |
||
15 | 15 | */ |
16 | 16 | public static function findPK(string $table): string |
17 | 17 | { |
18 | - if (! $table) { |
|
18 | + if (!$table) { |
|
19 | 19 | return 'id'; |
20 | 20 | } |
21 | 21 | |
22 | - return cache()->remember('CrudBooster_pk_'.$table, 10, function () use ($table) { |
|
22 | + return cache()->remember('CrudBooster_pk_'.$table, 10, function() use ($table) { |
|
23 | 23 | return self::findPKname($table) ?: 'id'; |
24 | 24 | }); |
25 | 25 | } |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | private static function findPKname($table) |
32 | 32 | { |
33 | 33 | $pk = \DB::getDoctrineSchemaManager()->listTableDetails($table)->getPrimaryKey(); |
34 | - if(!$pk) { |
|
34 | + if (!$pk) { |
|
35 | 35 | throw new \Exception("The '$table' table does not have a primary key"); |
36 | 36 | } |
37 | 37 | $cols = $pk->getColumns(); |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | public static function isNullableColumn($table, $colName) |
47 | 47 | { |
48 | 48 | $colObj = \DB::getDoctrineSchemaManager()->listTableColumns($table)[$colName]; |
49 | - if (! $colObj) { |
|
49 | + if (!$colObj) { |
|
50 | 50 | return; |
51 | 51 | } |
52 | 52 | |
53 | - return ! $colObj->getNotnull(); |
|
53 | + return !$colObj->getNotnull(); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public static function isForeignKey($fieldName) |
80 | 80 | { |
81 | - return Cache::rememberForever('crudbooster_isForeignKey_'.$fieldName, function () use ($fieldName) { |
|
81 | + return Cache::rememberForever('crudbooster_isForeignKey_'.$fieldName, function() use ($fieldName) { |
|
82 | 82 | $table = self::getRelatedTableName($fieldName); |
83 | 83 | return ($table && Schema::hasTable($table)); |
84 | 84 | }); |