@@ -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 |
@@ -5,36 +5,36 @@ |
||
5 | 5 | |
6 | 6 | class CreateCmsStatisticComponentsTable extends Migration { |
7 | 7 | |
8 | - /** |
|
9 | - * Run the migrations. |
|
10 | - * |
|
11 | - * @return void |
|
12 | - */ |
|
13 | - public function up() |
|
14 | - { |
|
15 | - Schema::create('cms_statistic_components', function(Blueprint $table) |
|
16 | - { |
|
17 | - $table->increments('id'); |
|
18 | - $table->integer('id_cms_statistics')->nullable(); |
|
19 | - $table->string('componentID')->nullable(); |
|
20 | - $table->string('component_name')->nullable(); |
|
21 | - $table->string('area_name', 55)->nullable(); |
|
22 | - $table->integer('sorting')->nullable(); |
|
23 | - $table->string('name')->nullable(); |
|
24 | - $table->text('config')->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_statistic_components', function(Blueprint $table) |
|
16 | + { |
|
17 | + $table->increments('id'); |
|
18 | + $table->integer('id_cms_statistics')->nullable(); |
|
19 | + $table->string('componentID')->nullable(); |
|
20 | + $table->string('component_name')->nullable(); |
|
21 | + $table->string('area_name', 55)->nullable(); |
|
22 | + $table->integer('sorting')->nullable(); |
|
23 | + $table->string('name')->nullable(); |
|
24 | + $table->text('config')->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_statistic_components'); |
|
38 | - } |
|
30 | + /** |
|
31 | + * Reverse the migrations. |
|
32 | + * |
|
33 | + * @return void |
|
34 | + */ |
|
35 | + public function down() |
|
36 | + { |
|
37 | + Schema::drop('cms_statistic_components'); |
|
38 | + } |
|
39 | 39 | |
40 | 40 | } |
@@ -5,31 +5,31 @@ |
||
5 | 5 | |
6 | 6 | class CreateCmsStatisticsTable extends Migration { |
7 | 7 | |
8 | - /** |
|
9 | - * Run the migrations. |
|
10 | - * |
|
11 | - * @return void |
|
12 | - */ |
|
13 | - public function up() |
|
14 | - { |
|
15 | - Schema::create('cms_statistics', function(Blueprint $table) |
|
16 | - { |
|
17 | - $table->increments('id'); |
|
18 | - $table->string('name')->nullable(); |
|
19 | - $table->string('slug')->nullable(); |
|
20 | - $table->timestamps(); |
|
21 | - }); |
|
22 | - } |
|
8 | + /** |
|
9 | + * Run the migrations. |
|
10 | + * |
|
11 | + * @return void |
|
12 | + */ |
|
13 | + public function up() |
|
14 | + { |
|
15 | + Schema::create('cms_statistics', function(Blueprint $table) |
|
16 | + { |
|
17 | + $table->increments('id'); |
|
18 | + $table->string('name')->nullable(); |
|
19 | + $table->string('slug')->nullable(); |
|
20 | + $table->timestamps(); |
|
21 | + }); |
|
22 | + } |
|
23 | 23 | |
24 | 24 | |
25 | - /** |
|
26 | - * Reverse the migrations. |
|
27 | - * |
|
28 | - * @return void |
|
29 | - */ |
|
30 | - public function down() |
|
31 | - { |
|
32 | - Schema::drop('cms_statistics'); |
|
33 | - } |
|
25 | + /** |
|
26 | + * Reverse the migrations. |
|
27 | + * |
|
28 | + * @return void |
|
29 | + */ |
|
30 | + public function down() |
|
31 | + { |
|
32 | + Schema::drop('cms_statistics'); |
|
33 | + } |
|
34 | 34 | |
35 | 35 | } |