@@ -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'); |
@@ -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 | |
@@ -21,11 +21,11 @@ discard block |
||
| 21 | 21 | public function createVendorAtPublic() |
| 22 | 22 | { |
| 23 | 23 | $this->console->info('Checking public/vendor directory...'); |
| 24 | - if (! file_exists(public_path('vendor'))) { |
|
| 24 | + if (!file_exists(public_path('vendor'))) { |
|
| 25 | 25 | mkdir(public_path('vendor'), 0777); |
| 26 | 26 | } |
| 27 | 27 | |
| 28 | - if (! is_writable(public_path('vendor'))) { |
|
| 28 | + if (!is_writable(public_path('vendor'))) { |
|
| 29 | 29 | $this->console->info('Setup aborted !'); |
| 30 | 30 | $this->console->info('Please set public/vendor directory to writable 0777'); |
| 31 | 31 | exit; |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | public function symlinkForUpload() |
| 36 | 36 | { |
| 37 | 37 | $this->console->info('Checking public/uploads symlink...'); |
| 38 | - if (! file_exists(public_path('uploads'))) { |
|
| 38 | + if (!file_exists(public_path('uploads'))) { |
|
| 39 | 39 | $this->console->info('Creating public/uploads symlink...'); |
| 40 | 40 | app('files')->link(storage_path('app'), public_path('uploads')); |
| 41 | 41 | |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | |
| 53 | 53 | private function rrmdir($dir) |
| 54 | 54 | { |
| 55 | - if (! is_dir($dir)) { |
|
| 55 | + if (!is_dir($dir)) { |
|
| 56 | 56 | return; |
| 57 | 57 | } |
| 58 | 58 | foreach (scandir($dir) as $object) { |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | $vendorPath = public_path('vendor'.$ds.'crudbooster'); |
| 80 | 80 | $assetPath = base_path('vendor'.$ds.'crocodicstudio'.$ds.'crudbooster'.$ds.'src'.$ds.'assets'); |
| 81 | 81 | |
| 82 | - if (! file_exists($vendorPath)) { |
|
| 82 | + if (!file_exists($vendorPath)) { |
|
| 83 | 83 | $this->console->info('Creating public/vendor/crudbooster symlink...'); |
| 84 | 84 | app('files')->link($assetPath, public_path('vendor/crudbooster')); |
| 85 | 85 | |
@@ -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 | } |
@@ -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 = [ |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | |
| 35 | 35 | $printer->printHeader(); |
| 36 | 36 | |
| 37 | - if (! ((new RequirementChecker($this))->check())) { |
|
| 37 | + if (!((new RequirementChecker($this))->check())) { |
|
| 38 | 38 | $this->info('Sorry unfortunately your system is not meet with our requirements !'); |
| 39 | 39 | $printer->printFooter(false); |
| 40 | 40 | $this->info('--'); |