@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function boot() |
| 15 | 15 | { |
| 16 | - $this->loadRoutesFrom( __DIR__.'/logs_routes.php'); |
|
| 16 | + $this->loadRoutesFrom(__DIR__.'/logs_routes.php'); |
|
| 17 | 17 | $this->publishes([__DIR__.'/localization' => resource_path('lang/crudbooster')], 'cb_localization'); |
| 18 | 18 | } |
| 19 | 19 | |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | 'middleware' => ['web', \crocodicstudio\crudbooster\middlewares\CBSuperadmin::class], |
| 4 | 4 | 'prefix' => cbAdminPath(), |
| 5 | 5 | 'namespace' => cbModulesNS('LogsModule'), |
| 6 | -], function () { |
|
| 6 | +], function() { |
|
| 7 | 7 | Route::get('logs/', ['uses' => 'AdminLogsController@getIndex', 'as' => 'AdminLogsControllerGetIndex']); |
| 8 | 8 | Route::get('logs/export-data', ['uses' => 'AdminLogsController@getExportData', 'as' => 'AdminLogsControllerGetExportData']); |
| 9 | 9 | Route::get('logs/data-query', ['uses' => 'AdminLogsController@getDataQuery', 'as' => 'AdminLogsControllerGetDataQuery']); |
@@ -17,8 +17,8 @@ discard block |
||
| 17 | 17 | Route::get('logs/import-data', ['uses' => 'AdminLogsController@getImportData', 'as' => 'AdminLogsControllerGetImportData']); |
| 18 | 18 | |
| 19 | 19 | |
| 20 | - Route::post('logs/find-data-old/{one?}', ['uses' => 'AdminLogsController@postFindDataOld', 'as' => 'AdminLogsControllerPostFindDataOld',]); |
|
| 21 | - Route::post('logs/find-data/{one?}', ['uses' => 'AdminLogsController@postFindData', 'as' => 'AdminLogsControllerPostFindData',]); |
|
| 20 | + Route::post('logs/find-data-old/{one?}', ['uses' => 'AdminLogsController@postFindDataOld', 'as' => 'AdminLogsControllerPostFindDataOld', ]); |
|
| 21 | + Route::post('logs/find-data/{one?}', ['uses' => 'AdminLogsController@postFindData', 'as' => 'AdminLogsControllerPostFindData', ]); |
|
| 22 | 22 | Route::post('logs/add-save/{one?}', [ |
| 23 | 23 | 'uses' => 'AdminLogsController@postAddSave', |
| 24 | 24 | 'as' => 'AdminLogsControllerPostAddSave', |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | |
| 31 | 31 | public function getLockscreen() |
| 32 | 32 | { |
| 33 | - if (! CRUDBooster::myId()) { |
|
| 33 | + if (!CRUDBooster::myId()) { |
|
| 34 | 34 | Session::flush(); |
| 35 | 35 | return redirect()->route('getLogin')->with('message', cbTrans('alert_session_expired')); |
| 36 | 36 | } |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | $password = request("password"); |
| 77 | 77 | $users = CbUsersRepo::findByMail(request("email")); |
| 78 | 78 | |
| 79 | - if (! \Hash::check($password, $users->password)) { |
|
| 79 | + if (!\Hash::check($password, $users->password)) { |
|
| 80 | 80 | return redirect()->route('getLogin')->with('message', cbTrans('alert_password_wrong')); |
| 81 | 81 | } |
| 82 | 82 | |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | |
| 116 | 116 | public function postForgot() |
| 117 | 117 | { |
| 118 | - $validator = Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users',]); |
|
| 118 | + $validator = Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users', ]); |
|
| 119 | 119 | |
| 120 | 120 | if ($validator->fails()) { |
| 121 | 121 | $message = $validator->errors()->all(); |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | public function boot() |
| 16 | 16 | { |
| 17 | 17 | $this->app['view']->addNamespace('CbAuth', __DIR__.'/views'); |
| 18 | - $this->loadRoutesFrom( __DIR__.'/auth_routes.php'); |
|
| 18 | + $this->loadRoutesFrom(__DIR__.'/auth_routes.php'); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | /** |
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | $namespace = cbModulesNS('AuthModule'); |
| 3 | 3 | $prefix = cbAdminPath(); |
| 4 | 4 | |
| 5 | -Route::group(['middleware' => ['web'], 'prefix' => $prefix, 'namespace' => $namespace], function () { |
|
| 5 | +Route::group(['middleware' => ['web'], 'prefix' => $prefix, 'namespace' => $namespace], function() { |
|
| 6 | 6 | Route::get('/', ['uses' => 'AuthController@getIndex', 'as' => 'AuthControllerGetIndex']); |
| 7 | 7 | Route::post('unlock-screen', ['uses' => 'AuthController@postUnlockScreen', 'as' => 'postUnlockScreen']); |
| 8 | 8 | Route::get('lock-screen', ['uses' => 'AuthController@getLockscreen', 'as' => 'getLockScreen']); |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | { |
| 11 | 11 | public function showForm($id) |
| 12 | 12 | { |
| 13 | - $row = ModulesRepo::find($id);; |
|
| 13 | + $row = ModulesRepo::find($id); ; |
|
| 14 | 14 | |
| 15 | 15 | $columns = CRUDBooster::getTableColumns($row->table_name); |
| 16 | 16 | |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | { |
| 11 | 11 | public function showForm($id) |
| 12 | 12 | { |
| 13 | - $controller = ModulesRepo::getControllerName($id);; |
|
| 13 | + $controller = ModulesRepo::getControllerName($id); ; |
|
| 14 | 14 | |
| 15 | 15 | $data = []; |
| 16 | 16 | $data['id'] = $id; |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | |
| 11 | 11 | class ControllerGenerator |
| 12 | 12 | { |
| 13 | - public static function generateController($table, $name = null){ |
|
| 13 | + public static function generateController($table, $name = null) { |
|
| 14 | 14 | |
| 15 | 15 | $controllerName = self::getControllerName($table, $name); |
| 16 | 16 | |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | class Step2Handler |
| 9 | 9 | { |
| 10 | 10 | private $hooks = ['hook_query_index', 'hook_row_index', 'hook_before_add', 'hook_after_add', |
| 11 | - 'hook_before_edit', 'hook_after_edit', 'hook_before_delete', 'hook_after_delete',]; |
|
| 11 | + 'hook_before_edit', 'hook_after_edit', 'hook_before_delete', 'hook_after_delete', ]; |
|
| 12 | 12 | |
| 13 | 13 | public function showForm($id) |
| 14 | 14 | { |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | $data['cols'] = ScaffoldingParser::parse($controllerCode, 'col'); |
| 26 | 26 | |
| 27 | 27 | |
| 28 | - foreach($this->hooks as $hook){ |
|
| 28 | + foreach ($this->hooks as $hook) { |
|
| 29 | 29 | $data[$hook] = FileManipulator::readMethodContent($controllerCode, $hook); |
| 30 | 30 | } |
| 31 | 31 | |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | $code = FileManipulator::readCtrlContent($controller); |
| 42 | 42 | $fileResult = \CB::replaceBetweenMark($code, 'COLUMNS', $newCode); |
| 43 | 43 | |
| 44 | - foreach($this->hooks as $hook){ |
|
| 44 | + foreach ($this->hooks as $hook) { |
|
| 45 | 45 | $fileResult = FileManipulator::writeMethodContent($fileResult, $hook, request($hook)); |
| 46 | 46 | } |
| 47 | 47 | |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | $columnScript[] = ' $this->col[] = [];'; |
| 66 | 66 | foreach ($labels as $i => $label) { |
| 67 | 67 | |
| 68 | - if (! $name[$i]) { |
|
| 68 | + if (!$name[$i]) { |
|
| 69 | 69 | continue; |
| 70 | 70 | } |
| 71 | 71 | |