@@ -22,8 +22,8 @@ |
||
22 | 22 | return redirect(url($adminPath.'/login'))->with('message', cbTrans('not_logged_in')); |
23 | 23 | } |
24 | 24 | |
25 | - if(!CRUDBooster::isSuperadmin()) { |
|
26 | - return redirect($adminPath)->with(['message'=> cbTrans('denied_access'),'message_type'=>'warning']); |
|
25 | + if (!CRUDBooster::isSuperadmin()) { |
|
26 | + return redirect($adminPath)->with(['message'=> cbTrans('denied_access'), 'message_type'=>'warning']); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | return $next($request); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | */ |
60 | 60 | private function guardView($request) |
61 | 61 | { |
62 | - if ($request->is($this->url.'*') && ! CRUDBooster::canView()) { |
|
62 | + if ($request->is($this->url.'*') && !CRUDBooster::canView()) { |
|
63 | 63 | $this->stopIllegalAction('view'); |
64 | 64 | } |
65 | 65 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | private function guardCreate($request) |
71 | 71 | { |
72 | - if ($request->is($this->url.'/add*') && ! CRUDBooster::canCreate()) { |
|
72 | + if ($request->is($this->url.'/add*') && !CRUDBooster::canCreate()) { |
|
73 | 73 | $this->stopIllegalAction('add'); |
74 | 74 | } |
75 | 75 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | */ |
80 | 80 | private function guardUpdate($request) |
81 | 81 | { |
82 | - if ($request->is($this->url.'/edit*') && ! CRUDBooster::canUpdate()) { |
|
82 | + if ($request->is($this->url.'/edit*') && !CRUDBooster::canUpdate()) { |
|
83 | 83 | $this->stopIllegalAction('edit'); |
84 | 84 | } |
85 | 85 | } |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | */ |
90 | 90 | private function guardDelete($request) |
91 | 91 | { |
92 | - if ($request->is($this->url.'/delete*') && ! CRUDBooster::canDelete()) { |
|
92 | + if ($request->is($this->url.'/delete*') && !CRUDBooster::canDelete()) { |
|
93 | 93 | $this->stopIllegalAction('delete'); |
94 | 94 | } |
95 | 95 | } |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | */ |
100 | 100 | private function guardRead($request) |
101 | 101 | { |
102 | - if ($request->is($this->url.'/detail*') && ! CRUDBooster::canRead()) { |
|
102 | + if ($request->is($this->url.'/detail*') && !CRUDBooster::canRead()) { |
|
103 | 103 | $this->stopIllegalAction('view'); |
104 | 104 | } |
105 | 105 | } |
@@ -4,7 +4,7 @@ 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 | |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | 'middleware' => ['web', \crocodicstudio\crudbooster\CBCoreModule\middlewares\CBBackend::class], |
14 | 14 | 'prefix' => cbAdminPath(), |
15 | 15 | 'namespace' => ctrlNamespace(), |
16 | -], function () { |
|
16 | +], function() { |
|
17 | 17 | try { |
18 | 18 | $argv = request()->server('argv'); |
19 | 19 | if (is_array($argv) && isset($argv[1]) && !starts_with($argv[1], 'route:')) { |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | 'middleware' => ['web', \crocodicstudio\crudbooster\CBCoreModule\middlewares\CBSuperadmin::class], |
34 | 34 | 'prefix' => cbAdminPath(), |
35 | 35 | 'namespace' => $namespace, |
36 | -], function () { |
|
36 | +], function() { |
|
37 | 37 | Route::post('{module}/do-upload-import-data', 'FileController@uploadImportData')->name('UploadImportData'); |
38 | 38 | Route::post('{module}/upload-summernote', 'FileController@uploadSummernote')->name('UploadImportData'); |
39 | 39 | Route::post('{module}/upload-file', 'FileController@uploadFile')->name('UploadImportData'); |
@@ -116,7 +116,7 @@ |
||
116 | 116 | */ |
117 | 117 | private function tokenMissMatchDevice($senderToken, $userAgent, $serverToken) |
118 | 118 | { |
119 | - if (! Cache::has($senderToken) || Cache::get($senderToken) == $userAgent) { |
|
119 | + if (!Cache::has($senderToken) || Cache::get($senderToken) == $userAgent) { |
|
120 | 120 | return; |
121 | 121 | } |
122 | 122 | $result = [ |
@@ -82,7 +82,7 @@ |
||
82 | 82 | |
83 | 83 | private function validateForgotPass() |
84 | 84 | { |
85 | - $validator = Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users',]); |
|
85 | + $validator = Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users', ]); |
|
86 | 86 | |
87 | 87 | if ($validator->fails()) { |
88 | 88 | $message = $validator->errors()->all(); |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | foreach (Request::input('privileges', []) as $moduleId => $data) { |
100 | 100 | //Check Menu |
101 | 101 | |
102 | - $arrs = array_get_keys($data, ['can_see_module', 'can_create', 'can_read', 'can_edit', 'can_delete',], 0); |
|
102 | + $arrs = array_get_keys($data, ['can_see_module', 'can_create', 'can_read', 'can_edit', 'can_delete', ], 0); |
|
103 | 103 | $this->savePermissions($id, $moduleId, $arrs); |
104 | 104 | } |
105 | 105 | |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | $this->col[] = [ |
181 | 181 | 'label' => 'Superadmin', |
182 | 182 | 'name' => 'is_superadmin', |
183 | - 'callback' => function ($row) { |
|
183 | + 'callback' => function($row) { |
|
184 | 184 | return ($row->is_superadmin) ? "<span class='label label-success'>Superadmin</span>" : "<span class='label label-default'>Standard</span>"; |
185 | 185 | }, |
186 | 186 | ]; |
@@ -4,7 +4,7 @@ |
||
4 | 4 | 'middleware' => ['web', \crocodicstudio\crudbooster\CBCoreModule\middlewares\CBSuperadmin::class], |
5 | 5 | 'prefix' => cbAdminPath(), |
6 | 6 | 'namespace' => cbModulesNS('StatisticModule'), |
7 | -], function () { |
|
7 | +], function() { |
|
8 | 8 | Route::get('statistic-builder/', 'AdminStatisticBuilderController@getIndex')->name('AdminStatisticBuilderControllerGetIndex'); |
9 | 9 | Route::get('statistic-builder/show-dashboard', 'AdminStatisticBuilderController@getShowDashboard')->name('AdminStatisticBuilderControllerGetShowDashboard'); |
10 | 10 | Route::get('statistic-builder/show', 'AdminStatisticBuilderController@getShow')->name('AdminStatisticBuilderControllerGetShow'); |
@@ -104,7 +104,7 @@ |
||
104 | 104 | { |
105 | 105 | $uid = auth('cbAdmin')->user()->id_cms_privileges; |
106 | 106 | |
107 | - return cache()->rememberForever('cb_admin_privileges_roles', function () use ($uid) { |
|
107 | + return cache()->rememberForever('cb_admin_privileges_roles', function() use ($uid) { |
|
108 | 108 | return \DB::table('cms_privileges_roles')->where('id_cms_privileges', $uid)->join('cms_modules', 'cms_modules.id', '=', 'id_cms_modules')->select('cms_modules.name', 'cms_modules.path', 'can_see_module', 'can_create', 'can_read', 'can_edit', 'can_delete')->get() ?: []; |
109 | 109 | }); |
110 | 110 | } |
@@ -55,13 +55,13 @@ discard block |
||
55 | 55 | __DIR__.'/CBCoreModule/publieshed_files/readme.txt' => resource_path('views/vendor/crudbooster/type_components/readme.txt'), |
56 | 56 | ], 'cb_type_components'); |
57 | 57 | |
58 | - if (! file_exists(app_path('Http/Controllers/AdminUsersController.php'))) { |
|
58 | + if (!file_exists(app_path('Http/Controllers/AdminUsersController.php'))) { |
|
59 | 59 | $this->publishes([__DIR__.'/CBCoreModule/publieshed_files/AdminUsersController.php' => app_path('Http/Controllers/AdminUsersController.php')], 'cb_user_controller'); |
60 | 60 | } |
61 | 61 | |
62 | 62 | |
63 | 63 | $this->defineValidationRules(); |
64 | - $this->loadRoutesFrom( __DIR__.'/routes.php'); |
|
64 | + $this->loadRoutesFrom(__DIR__.'/routes.php'); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | { |
74 | 74 | $this->mergeConfigFrom(__DIR__.'/configs/crudbooster.php', 'crudbooster'); |
75 | 75 | |
76 | - $this->app->singleton('crudbooster', function () { |
|
76 | + $this->app->singleton('crudbooster', function() { |
|
77 | 77 | return true; |
78 | 78 | }); |
79 | 79 | |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | |
113 | 113 | private function defineValidationRules() |
114 | 114 | { |
115 | - \Validator::extend('alpha_spaces', function ($attribute, $value) { |
|
115 | + \Validator::extend('alpha_spaces', function($attribute, $value) { |
|
116 | 116 | // This will only accept alpha and spaces. |
117 | 117 | // If you want to accept hyphens use: /^[\pL\s-]+$/u. |
118 | 118 | return preg_match('/^[\pL\s]+$/u', $value); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | |
122 | 122 | private function defineAuthGuard() |
123 | 123 | { |
124 | - config()->offsetSet('auth.providers.cb_users', ['driver' => 'eloquent', 'model' => CbUser::class,]); |
|
124 | + config()->offsetSet('auth.providers.cb_users', ['driver' => 'eloquent', 'model' => CbUser::class, ]); |
|
125 | 125 | config()->offsetSet('auth.guards.cbAdmin', ['driver' => 'session', 'provider' => 'cb_users']); |
126 | 126 | } |
127 | 127 | } |