@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | $datatableWhere = urldecode(request('datatable_where')); |
| 12 | 12 | $foreign_key_name = request('fk_name'); |
| 13 | 13 | $foreign_key_value = request('fk_value'); |
| 14 | - if (! $table || ! $label || ! $foreign_key_name || ! $foreign_key_value) { |
|
| 14 | + if (!$table || !$label || !$foreign_key_name || !$foreign_key_value) { |
|
| 15 | 15 | return response()->json([]); |
| 16 | 16 | } |
| 17 | 17 | $query = DB::table($table); |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | $result = DB::table($data['table']); |
| 35 | 35 | if (request('q')) { |
| 36 | - $result->where(function ($where) use ($columns) { |
|
| 36 | + $result->where(function($where) use ($columns) { |
|
| 37 | 37 | foreach ($columns as $c => $col) { |
| 38 | 38 | if ($c == 0) { |
| 39 | 39 | $where->where($col, 'like', '%'.request('q').'%'); |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | public function getDataQuery() |
| 62 | 62 | { |
| 63 | 63 | $key = request('query'); |
| 64 | - if (! Cache::has($key)) { |
|
| 64 | + if (!Cache::has($key)) { |
|
| 65 | 65 | return response()->json(['items' => []]); |
| 66 | 66 | } |
| 67 | 67 | $query = Cache::get($key); |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | $this->table('cms_settings')->where('name', 'default_paper_size')->update(['content' => $papersize]); |
| 20 | 20 | } |
| 21 | 21 | $format = request('fileformat'); |
| 22 | - if(in_array($format, ['pdf', 'xls', 'csv'])) |
|
| 22 | + if (in_array($format, ['pdf', 'xls', 'csv'])) |
|
| 23 | 23 | { |
| 24 | 24 | return app(IndexExport::class)->{$format}($filename, $indexContent, $paperorientation, $papersize); |
| 25 | 25 | } |
@@ -17,12 +17,12 @@ |
||
| 17 | 17 | $data['page_menu'] = Route::getCurrentRoute()->getActionName(); |
| 18 | 18 | $data['page_title'] = 'Import Data '.CB::getCurrentModule()->name; |
| 19 | 19 | |
| 20 | - if (! request('file') || request('import')) { |
|
| 20 | + if (!request('file') || request('import')) { |
|
| 21 | 21 | return $this->cbView('crudbooster::import', $data); |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | $file = 'storage'.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.base64_decode(request('file')); |
| 25 | - $rows = Excel::load($file, function ($reader) { |
|
| 25 | + $rows = Excel::load($file, function($reader) { |
|
| 26 | 26 | })->get(); |
| 27 | 27 | |
| 28 | 28 | session()->put('total_data_import', count($rows)); |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | function handle($result, $table) |
| 23 | 23 | { |
| 24 | 24 | $orderby = $this->ctrl->orderby; |
| 25 | - if (! $orderby) { |
|
| 25 | + if (!$orderby) { |
|
| 26 | 26 | $result->orderby($table.'.'.$this->ctrl->primary_key, 'desc'); |
| 27 | 27 | return; |
| 28 | 28 | } |
@@ -83,7 +83,7 @@ |
||
| 83 | 83 | |
| 84 | 84 | private function checkHideForm() |
| 85 | 85 | { |
| 86 | - if (! count($this->hide_form)) { |
|
| 86 | + if (!count($this->hide_form)) { |
|
| 87 | 87 | return null; |
| 88 | 88 | } |
| 89 | 89 | foreach ($this->form as $i => $f) { |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | $type = $form['type'] ?: 'text'; |
| 20 | 20 | $inputdata = request($name); |
| 21 | 21 | |
| 22 | - if (! $name || in_array($name, $hide_form) || $form['exception']) { |
|
| 22 | + if (!$name || in_array($name, $hide_form) || $form['exception']) { |
|
| 23 | 23 | continue; |
| 24 | 24 | } |
| 25 | 25 | |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | app(RelationHandler::class)->save($this->table, $id, $this->data_inputan); |
| 61 | 61 | $this->hookAfterAdd($id); |
| 62 | 62 | |
| 63 | - $this->insertLog('log_add', $id. ' on ' . $this->table); |
|
| 63 | + $this->insertLog('log_add', $id.' on '.$this->table); |
|
| 64 | 64 | |
| 65 | 65 | $this->sendResponseForSave('alert_add_data_success'); |
| 66 | 66 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | app(RelationHandler::class)->save($this->table, $id, $this->data_inputan); |
| 80 | 80 | $this->hookAfterEdit($id); |
| 81 | 81 | |
| 82 | - $this->insertLog('log_update', $id. ' on ' . $this->table); |
|
| 82 | + $this->insertLog('log_update', $id.' on '.$this->table); |
|
| 83 | 83 | |
| 84 | 84 | $this->sendResponseForSave('alert_update_data_success'); |
| 85 | 85 | } |
@@ -52,9 +52,9 @@ |
||
| 52 | 52 | */ |
| 53 | 53 | private function exportExcelAs($filename, $response, $orientation, $fmt) |
| 54 | 54 | { |
| 55 | - return Excel::create($filename, function ($excel) use ($response, $orientation, $filename) { |
|
| 55 | + return Excel::create($filename, function($excel) use ($response, $orientation, $filename) { |
|
| 56 | 56 | $excel->setTitle($filename)->setCreator("crudbooster.com")->setCompany(cbGetsetting('appname')); |
| 57 | - $excel->sheet($filename, function ($sheet) use ($response, $orientation) { |
|
| 57 | + $excel->sheet($filename, function($sheet) use ($response, $orientation) { |
|
| 58 | 58 | $sheet->setOrientation($orientation); |
| 59 | 59 | $sheet->loadview('crudbooster::export', $response); |
| 60 | 60 | }); |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | function uploadImportData($file) |
| 50 | 50 | { |
| 51 | 51 | $dir = 'uploads/'.date('Y-m'); |
| 52 | - $filename = md5(str_random(5)).'.'. $file->getClientOriginalExtension(); |
|
| 52 | + $filename = md5(str_random(5)).'.'.$file->getClientOriginalExtension(); |
|
| 53 | 53 | |
| 54 | 54 | //Create Directory Monthly |
| 55 | 55 | Storage::makeDirectory($dir); |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | */ |
| 67 | 67 | function validateForImport($file) |
| 68 | 68 | { |
| 69 | - return Validator::make(['extension' => $file->getClientOriginalExtension(),], ['extension' => 'in:xls,xlsx,csv']); |
|
| 69 | + return Validator::make(['extension' => $file->getClientOriginalExtension(), ], ['extension' => 'in:xls,xlsx,csv']); |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | |
| 83 | 83 | $file = base64_decode(request('file')); |
| 84 | 84 | $file = 'storage'.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.$file; |
| 85 | - $rows = Excel::load($file, function ($reader) { |
|
| 85 | + $rows = Excel::load($file, function($reader) { |
|
| 86 | 86 | })->get(); |
| 87 | 87 | |
| 88 | 88 | //$data_import_column = []; |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | foreach ($select_column as $sk => $s) { |
| 128 | 128 | $colname = $table_columns[$sk]; |
| 129 | 129 | |
| 130 | - if (! CRUDBooster::isForeignKey($colname) || intval($value->$s)) { |
|
| 130 | + if (!CRUDBooster::isForeignKey($colname) || intval($value->$s)) { |
|
| 131 | 131 | $a[$colname] = $value->$s; |
| 132 | 132 | continue; |
| 133 | 133 | } |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | $relation_moduls = DB::table('cms_moduls')->where('table_name', $relation_table)->first(); |
| 142 | 142 | |
| 143 | 143 | $relation_class = __NAMESPACE__.'\\'.$relation_moduls->controller; |
| 144 | - if (! class_exists($relation_class)) { |
|
| 144 | + if (!class_exists($relation_class)) { |
|
| 145 | 145 | $relation_class = '\App\Http\Controllers\\'.$relation_moduls->controller; |
| 146 | 146 | } |
| 147 | 147 | $relation_class = new $relation_class; |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | $validator = Validator::make(request()->all(), $rules); |
| 21 | 21 | |
| 22 | - if (! $validator->fails()) { |
|
| 22 | + if (!$validator->fails()) { |
|
| 23 | 23 | return null; |
| 24 | 24 | } |
| 25 | 25 | |
@@ -37,12 +37,12 @@ discard block |
||
| 37 | 37 | $rules = []; |
| 38 | 38 | foreach ($form as $formInput) { |
| 39 | 39 | $name = $formInput['name']; |
| 40 | - if (! $name) { |
|
| 40 | + if (!$name) { |
|
| 41 | 41 | continue; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | $ai = []; |
| 45 | - if ($formInput['required'] && ! Request::hasFile($name)) { |
|
| 45 | + if ($formInput['required'] && !Request::hasFile($name)) { |
|
| 46 | 46 | $ai[] = 'required'; |
| 47 | 47 | } |
| 48 | 48 | |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | { |
| 72 | 72 | $exp = explode('|', $formInput['validation']); |
| 73 | 73 | |
| 74 | - if (! count($exp)) { |
|
| 74 | + if (!count($exp)) { |
|
| 75 | 75 | return ''; |
| 76 | 76 | } |
| 77 | 77 | |