@@ -15,11 +15,11 @@ discard block |
||
15 | 15 | */ |
16 | 16 | public static function findPK(string $table): string |
17 | 17 | { |
18 | - if (! $table) { |
|
18 | + if (!$table) { |
|
19 | 19 | return 'id'; |
20 | 20 | } |
21 | 21 | |
22 | - return cache()->remember('CrudBooster_pk_'.$table, 10, function () use ($table) { |
|
22 | + return cache()->remember('CrudBooster_pk_'.$table, 10, function() use ($table) { |
|
23 | 23 | return self::findPKname($table) ?: 'id'; |
24 | 24 | }); |
25 | 25 | } |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | private static function findPKname($table) |
32 | 32 | { |
33 | 33 | $pk = \DB::getDoctrineSchemaManager()->listTableDetails($table)->getPrimaryKey(); |
34 | - if(!$pk) { |
|
34 | + if (!$pk) { |
|
35 | 35 | throw new \Exception("The '$table' table does not have a primary key"); |
36 | 36 | } |
37 | 37 | $cols = $pk->getColumns(); |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | public static function isNullableColumn($table, $colName) |
47 | 47 | { |
48 | 48 | $colObj = \DB::getDoctrineSchemaManager()->listTableColumns($table)[$colName]; |
49 | - if (! $colObj) { |
|
49 | + if (!$colObj) { |
|
50 | 50 | return; |
51 | 51 | } |
52 | 52 | |
53 | - return ! $colObj->getNotnull(); |
|
53 | + return !$colObj->getNotnull(); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public static function isForeignKey($fieldName) |
80 | 80 | { |
81 | - return Cache::rememberForever('crudbooster_isForeignKey_'.$fieldName, function () use ($fieldName) { |
|
81 | + return Cache::rememberForever('crudbooster_isForeignKey_'.$fieldName, function() use ($fieldName) { |
|
82 | 82 | $table = self::getRelatedTableName($fieldName); |
83 | 83 | return ($table && Schema::hasTable($table)); |
84 | 84 | }); |
@@ -52,13 +52,13 @@ discard block |
||
52 | 52 | __DIR__.'/CBCoreModule/publieshed_files/readme.txt' => resource_path('views/vendor/crudbooster/type_components/readme.txt'), |
53 | 53 | ], 'cb_type_components'); |
54 | 54 | |
55 | - if (! file_exists(app_path('Http/Controllers/AdminUsersController.php'))) { |
|
55 | + if (!file_exists(app_path('Http/Controllers/AdminUsersController.php'))) { |
|
56 | 56 | $this->publishes([__DIR__.'/CBCoreModule/publieshed_files/AdminUsersController.php' => app_path('Http/Controllers/AdminUsersController.php')], 'cb_user_controller'); |
57 | 57 | } |
58 | 58 | |
59 | 59 | |
60 | 60 | $this->defineValidationRules(); |
61 | - $this->loadRoutesFrom( __DIR__.'/routes.php'); |
|
61 | + $this->loadRoutesFrom(__DIR__.'/routes.php'); |
|
62 | 62 | $this->registerUserModule(); |
63 | 63 | } |
64 | 64 | |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | { |
72 | 72 | $this->mergeConfigFrom(__DIR__.'/CBCoreModule/configs/crudbooster.php', 'crudbooster'); |
73 | 73 | |
74 | - $this->app->singleton('crudbooster', function () { |
|
74 | + $this->app->singleton('crudbooster', function() { |
|
75 | 75 | return true; |
76 | 76 | }); |
77 | 77 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | |
92 | 92 | private function defineValidationRules() |
93 | 93 | { |
94 | - \Validator::extend('alpha_spaces', function ($attribute, $value) { |
|
94 | + \Validator::extend('alpha_spaces', function($attribute, $value) { |
|
95 | 95 | // This will only accept alpha and spaces. |
96 | 96 | // If you want to accept hyphens use: /^[\pL\s-]+$/u. |
97 | 97 | return preg_match('/^[\pL\s]+$/u', $value); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | |
101 | 101 | private function defineAuthGuard() |
102 | 102 | { |
103 | - config()->offsetSet('auth.providers.cb_users', ['driver' => 'eloquent', 'model' => CbUser::class,]); |
|
103 | + config()->offsetSet('auth.providers.cb_users', ['driver' => 'eloquent', 'model' => CbUser::class, ]); |
|
104 | 104 | config()->offsetSet('auth.guards.cbAdmin', ['driver' => 'session', 'provider' => 'cb_users']); |
105 | 105 | } |
106 | 106 | |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | |
143 | 143 | private function registerUserModule() |
144 | 144 | { |
145 | - app('CbModulesRegistery')->addModule('users', (object)[ |
|
145 | + app('CbModulesRegistery')->addModule('users', (object) [ |
|
146 | 146 | 'name' => trans('crudbooster.Users_Management'), |
147 | 147 | 'icon' => 'fa fa-users', |
148 | 148 | 'path' => 'users', |
@@ -14,7 +14,7 @@ |
||
14 | 14 | public function boot() |
15 | 15 | { |
16 | 16 | $this->app['view']->addNamespace('CbModulesGen', __DIR__.'/views'); |
17 | - $this->loadRoutesFrom( __DIR__.'/module_generator_routes.php'); |
|
17 | + $this->loadRoutesFrom(__DIR__.'/module_generator_routes.php'); |
|
18 | 18 | $this->loadMigrationsFrom(__DIR__.'/migrations'); |
19 | 19 | $this->registerModule(); |
20 | 20 | } |
@@ -14,8 +14,8 @@ |
||
14 | 14 | public function boot() |
15 | 15 | { |
16 | 16 | $this->app['view']->addNamespace('CbSettings', __DIR__.'/views'); |
17 | - $this->loadRoutesFrom( __DIR__.'/settings_routes.php'); |
|
18 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
17 | + $this->loadRoutesFrom(__DIR__.'/settings_routes.php'); |
|
18 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
19 | 19 | app('CbDynamicMenus')->addSuperAdminMenu('CbSettings::menu'); |
20 | 20 | $this->registerModule(); |
21 | 21 | } |
@@ -14,9 +14,9 @@ |
||
14 | 14 | public function boot() |
15 | 15 | { |
16 | 16 | $this->app['view']->addNamespace('CbPrivilege', __DIR__.'/views'); |
17 | - $this->loadRoutesFrom( __DIR__.'/privileges_routes.php'); |
|
17 | + $this->loadRoutesFrom(__DIR__.'/privileges_routes.php'); |
|
18 | 18 | $this->publishes([__DIR__.'/localization' => resource_path('lang')], 'cb_localization'); |
19 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
19 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
20 | 20 | app('CbDynamicMenus')->addSuperAdminMenu('CbPrivilege::menu'); |
21 | 21 | $this->registerModule(); |
22 | 22 | } |
@@ -16,7 +16,7 @@ |
||
16 | 16 | { |
17 | 17 | $this->app['view']->addNamespace('CbApiGen', __DIR__.'/views'); |
18 | 18 | $this->loadRoutesFrom(__DIR__.'/api_generator_routes.php'); |
19 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
19 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
20 | 20 | app('CbDynamicMenus')->addSuperAdminMenu('CbApiGen::menu'); |
21 | 21 | $this->registerModule(); |
22 | 22 | } |
@@ -14,8 +14,8 @@ discard block |
||
14 | 14 | public function boot() |
15 | 15 | { |
16 | 16 | $this->app['view']->addNamespace('CbEmailTpl', __DIR__.'/views'); |
17 | - $this->loadRoutesFrom( __DIR__.'/email_templates_routes.php'); |
|
18 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
17 | + $this->loadRoutesFrom(__DIR__.'/email_templates_routes.php'); |
|
18 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
19 | 19 | app('CbDynamicMenus')->addSuperAdminMenu('CbEmailTpl::super_admin_menu'); |
20 | 20 | $this->registerModule(); |
21 | 21 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | private function registerModule() |
34 | 34 | { |
35 | - app('CbModulesRegistery')->addModule('email-templates', (object) [ |
|
35 | + app('CbModulesRegistery')->addModule('email-templates', (object) [ |
|
36 | 36 | 'name' => trans('crudbooster.Email_Templates'), |
37 | 37 | 'icon' => 'fa fa-envelope-o', |
38 | 38 | 'path' => 'email_templates', |
@@ -14,8 +14,8 @@ |
||
14 | 14 | public function boot() |
15 | 15 | { |
16 | 16 | $this->app['view']->addNamespace('CbMenu', __DIR__.'/views'); |
17 | - $this->loadRoutesFrom( __DIR__.'/menus_routes.php'); |
|
18 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
17 | + $this->loadRoutesFrom(__DIR__.'/menus_routes.php'); |
|
18 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
19 | 19 | app('CbDynamicMenus')->addSuperAdminMenu('CbMenu::menu'); |
20 | 20 | app('CbDynamicMenus')->addMenu('CbMenu::dynamic_menus'); |
21 | 21 | $this->registerModule(); |
@@ -20,7 +20,7 @@ |
||
20 | 20 | app('CbDynamicMenus')->addMenu('CbMenu::dynamic_menus'); |
21 | 21 | $this->registerModule(); |
22 | 22 | |
23 | - /* $hasDashboard = \Crocodicstudio\Crudbooster\Modules\MenuModule\MenuRepo::sidebarDashboard(); |
|
23 | + /* $hasDashboard = \Crocodicstudio\Crudbooster\Modules\MenuModule\MenuRepo::sidebarDashboard(); |
|
24 | 24 | if (false && $hasDashboard) { |
25 | 25 | app('CbDynamicMenus')->addMenu('CbMenu::dashboard'); |
26 | 26 | }*/ |
@@ -13,9 +13,9 @@ |
||
13 | 13 | */ |
14 | 14 | public function boot() |
15 | 15 | { |
16 | - $this->loadViewsFrom( __DIR__.'/views', 'CbNotifications'); |
|
17 | - $this->loadRoutesFrom( __DIR__.'/notifications_routes.php'); |
|
18 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
16 | + $this->loadViewsFrom(__DIR__.'/views', 'CbNotifications'); |
|
17 | + $this->loadRoutesFrom(__DIR__.'/notifications_routes.php'); |
|
18 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
19 | 19 | $this->registerModule(); |
20 | 20 | } |
21 | 21 |