@@ -5,36 +5,36 @@ |
||
5 | 5 | |
6 | 6 | class CreateCmsPrivilegesRolesTable extends Migration { |
7 | 7 | |
8 | - /** |
|
9 | - * Run the migrations. |
|
10 | - * |
|
11 | - * @return void |
|
12 | - */ |
|
13 | - public function up() |
|
14 | - { |
|
15 | - Schema::create('cms_roles_privileges', function(Blueprint $table) |
|
16 | - { |
|
17 | - $table->increments('id'); |
|
18 | - $table->boolean('can_see_module')->nullable(); |
|
19 | - $table->boolean('can_create')->nullable(); |
|
20 | - $table->boolean('can_read')->nullable(); |
|
21 | - $table->boolean('can_edit')->nullable(); |
|
22 | - $table->boolean('can_delete')->nullable(); |
|
23 | - $table->integer('cms_roles_id')->nullable(); |
|
24 | - $table->integer('cms_modules_id')->nullable(); |
|
25 | - $table->timestamps(); |
|
26 | - }); |
|
27 | - } |
|
8 | + /** |
|
9 | + * Run the migrations. |
|
10 | + * |
|
11 | + * @return void |
|
12 | + */ |
|
13 | + public function up() |
|
14 | + { |
|
15 | + Schema::create('cms_roles_privileges', function(Blueprint $table) |
|
16 | + { |
|
17 | + $table->increments('id'); |
|
18 | + $table->boolean('can_see_module')->nullable(); |
|
19 | + $table->boolean('can_create')->nullable(); |
|
20 | + $table->boolean('can_read')->nullable(); |
|
21 | + $table->boolean('can_edit')->nullable(); |
|
22 | + $table->boolean('can_delete')->nullable(); |
|
23 | + $table->integer('cms_roles_id')->nullable(); |
|
24 | + $table->integer('cms_modules_id')->nullable(); |
|
25 | + $table->timestamps(); |
|
26 | + }); |
|
27 | + } |
|
28 | 28 | |
29 | 29 | |
30 | - /** |
|
31 | - * Reverse the migrations. |
|
32 | - * |
|
33 | - * @return void |
|
34 | - */ |
|
35 | - public function down() |
|
36 | - { |
|
37 | - Schema::drop('cms_roles_privileges'); |
|
38 | - } |
|
30 | + /** |
|
31 | + * Reverse the migrations. |
|
32 | + * |
|
33 | + * @return void |
|
34 | + */ |
|
35 | + public function down() |
|
36 | + { |
|
37 | + Schema::drop('cms_roles_privileges'); |
|
38 | + } |
|
39 | 39 | |
40 | 40 | } |
@@ -104,7 +104,7 @@ |
||
104 | 104 | { |
105 | 105 | $roleId = cbUser()->cms_roles_id; |
106 | 106 | |
107 | - return cache()->rememberForever('cb_admin_privileges_roles'. $roleId, function () use ($roleId) { |
|
107 | + return cache()->rememberForever('cb_admin_privileges_roles'.$roleId, function() use ($roleId) { |
|
108 | 108 | return \DB::table('cms_roles_privileges')->where('cms_roles_id', $roleId)->join('cms_modules', 'cms_modules.id', '=', 'cms_roles_privileges.cms_modules_id')->select('cms_modules.name', 'cms_modules.path', 'can_see_module', 'can_create', 'can_read', 'can_edit', 'can_delete')->get() ?: []; |
109 | 109 | }); |
110 | 110 | } |
@@ -8,49 +8,49 @@ discard block |
||
8 | 8 | | --------------------------------------------------------------------------------------------------------------- |
9 | 9 | | |
10 | 10 | */ |
11 | -if (! function_exists('cbModulesNS')) { |
|
11 | +if (!function_exists('cbModulesNS')) { |
|
12 | 12 | function cbModulesNS(string $path = ''): string |
13 | 13 | { |
14 | 14 | return \crocodicstudio\crudbooster\helpers\CbStructure::cbModulesNS($path); |
15 | 15 | } |
16 | 16 | } |
17 | 17 | |
18 | -if (! function_exists('cbStartMarker')) { |
|
18 | +if (!function_exists('cbStartMarker')) { |
|
19 | 19 | function cbStartMarker(string $section): string |
20 | 20 | { |
21 | 21 | return "# START $section DO NOT REMOVE THIS LINE"; |
22 | 22 | } |
23 | 23 | } |
24 | 24 | |
25 | -if (! function_exists('cbEndMarker')) { |
|
25 | +if (!function_exists('cbEndMarker')) { |
|
26 | 26 | function cbEndMarker(string $section): string |
27 | 27 | { |
28 | 28 | return "# END $section DO NOT REMOVE THIS LINE"; |
29 | 29 | } |
30 | 30 | } |
31 | 31 | |
32 | -if (! function_exists('cbAdminPath')) { |
|
32 | +if (!function_exists('cbAdminPath')) { |
|
33 | 33 | function cbAdminPath(): string |
34 | 34 | { |
35 | 35 | return cbConfig('ADMIN_PATH'); |
36 | 36 | } |
37 | 37 | } |
38 | 38 | |
39 | -if (! function_exists('ctrlNamespace')) { |
|
39 | +if (!function_exists('ctrlNamespace')) { |
|
40 | 40 | function ctrlNamespace(): string |
41 | 41 | { |
42 | 42 | return \crocodicstudio\crudbooster\helpers\CbStructure::ctrlNamespace(); |
43 | 43 | } |
44 | 44 | } |
45 | 45 | |
46 | -if (! function_exists('cbControllersNS')) { |
|
46 | +if (!function_exists('cbControllersNS')) { |
|
47 | 47 | function cbControllersNS(): string |
48 | 48 | { |
49 | 49 | return \crocodicstudio\crudbooster\helpers\CbStructure::cbControllersNS(); |
50 | 50 | } |
51 | 51 | } |
52 | 52 | |
53 | -if (! function_exists('is_checked')) { |
|
53 | +if (!function_exists('is_checked')) { |
|
54 | 54 | /** |
55 | 55 | * @param $format |
56 | 56 | * @param $value |
@@ -74,28 +74,28 @@ discard block |
||
74 | 74 | } |
75 | 75 | } |
76 | 76 | |
77 | -if (! function_exists('CbComponentsPath')) { |
|
77 | +if (!function_exists('CbComponentsPath')) { |
|
78 | 78 | function CbComponentsPath(string $type = ''): string |
79 | 79 | { |
80 | 80 | return \crocodicstudio\crudbooster\helpers\CbStructure::componentsPath($type); |
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
84 | -if (! function_exists('CbPublishedComponentsPath')) { |
|
84 | +if (!function_exists('CbPublishedComponentsPath')) { |
|
85 | 85 | function CbPublishedComponentsPath(string $type = ''): string |
86 | 86 | { |
87 | 87 | return \crocodicstudio\crudbooster\helpers\CbStructure::publishedComponentsPath($type); |
88 | 88 | } |
89 | 89 | } |
90 | 90 | |
91 | -if (! function_exists('controllers_dir')) { |
|
91 | +if (!function_exists('controllers_dir')) { |
|
92 | 92 | function controllers_dir(): string |
93 | 93 | { |
94 | 94 | return \crocodicstudio\crudbooster\helpers\CbStructure::controllersDir(); |
95 | 95 | } |
96 | 96 | } |
97 | 97 | |
98 | -if (! function_exists('controller_path')) { |
|
98 | +if (!function_exists('controller_path')) { |
|
99 | 99 | function controller_path(string $controller): string |
100 | 100 | { |
101 | 101 | return \crocodicstudio\crudbooster\helpers\CbStructure::controllerPath($controller); |
@@ -109,14 +109,14 @@ discard block |
||
109 | 109 | | $name = name of input |
110 | 110 | | |
111 | 111 | */ |
112 | -if (! function_exists('g')) { |
|
112 | +if (!function_exists('g')) { |
|
113 | 113 | function g($name) |
114 | 114 | { |
115 | 115 | return Request::get($name); |
116 | 116 | } |
117 | 117 | } |
118 | 118 | |
119 | -if (! function_exists('cbTrans')) { |
|
119 | +if (!function_exists('cbTrans')) { |
|
120 | 120 | /** |
121 | 121 | * Translate the given message. |
122 | 122 | * |
@@ -130,34 +130,34 @@ discard block |
||
130 | 130 | } |
131 | 131 | } |
132 | 132 | |
133 | -if (! function_exists('cbAsset')) { |
|
133 | +if (!function_exists('cbAsset')) { |
|
134 | 134 | function cbAsset($key) |
135 | 135 | { |
136 | 136 | return asset('vendor/crudbooster/assets/'.$key); |
137 | 137 | } |
138 | 138 | } |
139 | 139 | |
140 | -if (! function_exists('cbScript')) { |
|
140 | +if (!function_exists('cbScript')) { |
|
141 | 141 | function cbScript($key) |
142 | 142 | { |
143 | 143 | return '<script src="'.cbAsset($key).'" type="text/javascript"></script>'; |
144 | 144 | } |
145 | 145 | } |
146 | 146 | |
147 | -if (! function_exists('cbStyleSheet')) { |
|
147 | +if (!function_exists('cbStyleSheet')) { |
|
148 | 148 | function cbStyleSheet($key) |
149 | 149 | { |
150 | 150 | return '<link rel="stylesheet" type="text/css" href="'.cbAsset($key).'"/>'; |
151 | 151 | } |
152 | 152 | } |
153 | 153 | |
154 | -if (! function_exists('cbConfig')) { |
|
154 | +if (!function_exists('cbConfig')) { |
|
155 | 155 | function cbConfig($key, $default = null) |
156 | 156 | { |
157 | 157 | return config('crudbooster.'.$key, $default); |
158 | 158 | } |
159 | 159 | } |
160 | -if (! function_exists('makeValidationForHTML')) { |
|
160 | +if (!function_exists('makeValidationForHTML')) { |
|
161 | 161 | function makeValidationForHTML($rules) |
162 | 162 | { |
163 | 163 | $validation = []; |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | } |
176 | 176 | } |
177 | 177 | |
178 | -if (! function_exists('findSelected')) { |
|
178 | +if (!function_exists('findSelected')) { |
|
179 | 179 | /** |
180 | 180 | * @param $rawvalue |
181 | 181 | * @param $form |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | */ |
185 | 185 | function findSelected($rawvalue, $form, $optionValue) |
186 | 186 | { |
187 | - if (! $rawvalue) { |
|
187 | + if (!$rawvalue) { |
|
188 | 188 | return ''; |
189 | 189 | } |
190 | 190 | $value = $rawvalue; |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | return $selected; |
207 | 207 | } |
208 | 208 | } |
209 | -if (! function_exists('array_get_keys')) { |
|
209 | +if (!function_exists('array_get_keys')) { |
|
210 | 210 | |
211 | 211 | /** |
212 | 212 | * @param array $_array |
@@ -222,21 +222,21 @@ discard block |
||
222 | 222 | } |
223 | 223 | } |
224 | 224 | |
225 | -if (! function_exists('cbGetSetting')) { |
|
225 | +if (!function_exists('cbGetSetting')) { |
|
226 | 226 | function cbGetSetting($name) |
227 | 227 | { |
228 | 228 | return \crocodicstudio\crudbooster\Modules\SettingModule\SettingRepo::getSetting($name); |
229 | 229 | } |
230 | 230 | } |
231 | 231 | |
232 | -if (! function_exists('backWithMsg')) { |
|
232 | +if (!function_exists('backWithMsg')) { |
|
233 | 233 | function backWithMsg($msg, $type = 'success') |
234 | 234 | { |
235 | - sendAndTerminate(redirect()->back()->with(['message' => $msg, 'message_type' => $type,])); |
|
235 | + sendAndTerminate(redirect()->back()->with(['message' => $msg, 'message_type' => $type, ])); |
|
236 | 236 | } |
237 | 237 | } |
238 | 238 | |
239 | -if (! function_exists('underField')) { |
|
239 | +if (!function_exists('underField')) { |
|
240 | 240 | function underField($help, $error) |
241 | 241 | { |
242 | 242 | $error = $error ? "<i class='fa fa-info-circle'></i> $error" : ''; |
@@ -244,21 +244,21 @@ discard block |
||
244 | 244 | return "<div class='text-danger'>$error</div><p class='help-block'>$help</p>"; |
245 | 245 | } |
246 | 246 | } |
247 | -if (! function_exists('cbIcon')) { |
|
247 | +if (!function_exists('cbIcon')) { |
|
248 | 248 | function cbIcon($icon) |
249 | 249 | { |
250 | 250 | return '<i class=\'fa fa-'.$icon.'\'></i>'; |
251 | 251 | } |
252 | 252 | } |
253 | 253 | |
254 | -if (! function_exists('YmdHis')) { |
|
254 | +if (!function_exists('YmdHis')) { |
|
255 | 255 | function YmdHis() |
256 | 256 | { |
257 | 257 | return date('Y-m-d H:i:s'); |
258 | 258 | } |
259 | 259 | } |
260 | 260 | |
261 | -if (! function_exists('cbUser')) { |
|
261 | +if (!function_exists('cbUser')) { |
|
262 | 262 | function cbUser() |
263 | 263 | { |
264 | 264 | return auth('cbAdmin')->user(); |
@@ -24,7 +24,7 @@ |
||
24 | 24 | $type = $form['type'] ?: 'text'; |
25 | 25 | $inputdata = request($name); |
26 | 26 | |
27 | - if (! $name || in_array($name, $hide_form) || $form['exception']) { |
|
27 | + if (!$name || in_array($name, $hide_form) || $form['exception']) { |
|
28 | 28 | continue; |
29 | 29 | } |
30 | 30 |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | $this->genericLoader(); |
23 | 23 | $selectedIds = request('checkbox'); |
24 | 24 | $btnName = request('button_name'); |
25 | - if (! $selectedIds) { |
|
25 | + if (!$selectedIds) { |
|
26 | 26 | backWithMsg(cbTrans('at_least_one_row'), 'warning'); |
27 | 27 | } |
28 | 28 | if ($btnName == 'delete') { |
@@ -45,8 +45,8 @@ discard block |
||
45 | 45 | $message = cbTrans('alert_action', ['action' => $action]); |
46 | 46 | |
47 | 47 | if ($this->actionButtonSelected($id_selected, $button_name) === false) { |
48 | - $message = ! empty($this->alert['message']) ? $this->alert['message'] : 'Error'; |
|
49 | - $type = ! empty($this->alert['type']) ? $this->alert['type'] : 'danger'; |
|
48 | + $message = !empty($this->alert['message']) ? $this->alert['message'] : 'Error'; |
|
49 | + $type = !empty($this->alert['type']) ? $this->alert['type'] : 'danger'; |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | backWithMsg($message, $type); |
@@ -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()->fullUrlWithQuery()]); |
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); |
@@ -18,21 +18,21 @@ discard block |
||
18 | 18 | |
19 | 19 | private static function forgottenPass() |
20 | 20 | { |
21 | - Event::listen('cb.forgottenPasswordRequested', function (string $email, string $ip) { |
|
22 | - self::insertLog('Password Recovery Requested for '. $email); |
|
21 | + Event::listen('cb.forgottenPasswordRequested', function(string $email, string $ip) { |
|
22 | + self::insertLog('Password Recovery Requested for '.$email); |
|
23 | 23 | }); |
24 | 24 | } |
25 | 25 | |
26 | 26 | private static function logOut() |
27 | 27 | { |
28 | - Event::listen('cb.userLoggedOut', function (CbUser $user) { |
|
28 | + Event::listen('cb.userLoggedOut', function(CbUser $user) { |
|
29 | 29 | self::insertLog('Logout '.$user->email); |
30 | 30 | }); |
31 | 31 | } |
32 | 32 | |
33 | 33 | private static function logIn() |
34 | 34 | { |
35 | - Event::listen('cb.userLoggedIn', function (CbUser $user, $time, $ip) { |
|
35 | + Event::listen('cb.userLoggedIn', function(CbUser $user, $time, $ip) { |
|
36 | 36 | self::insertLog('Login '.$user->email); |
37 | 37 | }); |
38 | 38 | } |
@@ -44,12 +44,12 @@ discard block |
||
44 | 44 | |
45 | 45 | private static function illegalAccessTry() |
46 | 46 | { |
47 | - Event::listen('cb.unauthorizedTryToSuperAdminArea', function (CbUser $user, $fullUrl) { |
|
48 | - self::insertLog('Warning - Try To Access Unauthorized Super Admin Area at: '. $fullUrl, $user->id); |
|
47 | + Event::listen('cb.unauthorizedTryToSuperAdminArea', function(CbUser $user, $fullUrl) { |
|
48 | + self::insertLog('Warning - Try To Access Unauthorized Super Admin Area at: '.$fullUrl, $user->id); |
|
49 | 49 | }); |
50 | 50 | |
51 | - Event::listen('cb.unauthorizedTryStopped', function (CbUser $user, $fullUrl) { |
|
52 | - self::insertLog('Warning - Try To Access Unauthorized Resource at: '. $fullUrl, $user->id); |
|
51 | + Event::listen('cb.unauthorizedTryStopped', function(CbUser $user, $fullUrl) { |
|
52 | + self::insertLog('Warning - Try To Access Unauthorized Resource at: '.$fullUrl, $user->id); |
|
53 | 53 | }); |
54 | 54 | |
55 | 55 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | private static function delete() |
19 | 19 | { |
20 | - Event::listen('cb.dataDeleted', function (string $table, array $ids, string $time, CbUser $user) { |
|
20 | + Event::listen('cb.dataDeleted', function(string $table, array $ids, string $time, CbUser $user) { |
|
21 | 21 | $ids = implode(', ', $ids); |
22 | 22 | self::insertLog("Data deleted from $table table with Ids: $ids at $time", $user->id); |
23 | 23 | }); |
@@ -30,21 +30,21 @@ discard block |
||
30 | 30 | |
31 | 31 | private static function create() |
32 | 32 | { |
33 | - Event::listen('cb.dataInserted', function (string $table, int $id, string $time, CbUser $user) { |
|
33 | + Event::listen('cb.dataInserted', function(string $table, int $id, string $time, CbUser $user) { |
|
34 | 34 | self::insertLog("Data inserted into $table table with Id: $id at $time", $user->id); |
35 | 35 | }); |
36 | 36 | } |
37 | 37 | |
38 | 38 | private static function update() |
39 | 39 | { |
40 | - Event::listen('cb.dataUpdated', function (string $table, int $id, string $time, CbUser $user) { |
|
40 | + Event::listen('cb.dataUpdated', function(string $table, int $id, string $time, CbUser $user) { |
|
41 | 41 | self::insertLog("Data updated within $table table with Id: $id at $time", $user->id); |
42 | 42 | }); |
43 | 43 | } |
44 | 44 | |
45 | 45 | private static function deleteImage() |
46 | 46 | { |
47 | - Event::listen('cb.imageDeleted', function (string $table, array $prop, string $time, CbUser $user) { |
|
47 | + Event::listen('cb.imageDeleted', function(string $table, array $prop, string $time, CbUser $user) { |
|
48 | 48 | $file = $prop['file']; |
49 | 49 | $id = $prop['id']; |
50 | 50 | self::insertLog("($file) Image deleted from $table table with Id: $id at $time", $user->id); |
@@ -17,9 +17,9 @@ |
||
17 | 17 | public function boot() |
18 | 18 | { |
19 | 19 | $this->loadViewsFrom(__DIR__.'/views', 'CbLogger'); |
20 | - $this->loadRoutesFrom( __DIR__.'/logs_routes.php'); |
|
20 | + $this->loadRoutesFrom(__DIR__.'/logs_routes.php'); |
|
21 | 21 | $this->publishes([__DIR__.'/localization' => resource_path('lang')], 'cb_localization'); |
22 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
22 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
23 | 23 | Auth::registerListeners(); |
24 | 24 | CRUD::registerListeners(); |
25 | 25 | app('CbDynamicMenus')->addMenu('CbLogger::log'); |