@@ -5,32 +5,32 @@ |
||
| 5 | 5 | |
| 6 | 6 | class CreateCmsPrivilegesTable extends Migration { |
| 7 | 7 | |
| 8 | - /** |
|
| 9 | - * Run the migrations. |
|
| 10 | - * |
|
| 11 | - * @return void |
|
| 12 | - */ |
|
| 13 | - public function up() |
|
| 14 | - { |
|
| 15 | - Schema::create('cms_roles', function(Blueprint $table) |
|
| 16 | - { |
|
| 17 | - $table->increments('id'); |
|
| 18 | - $table->string('name', 50)->nullable(); |
|
| 19 | - $table->boolean('is_superadmin')->nullable(); |
|
| 20 | - $table->string('theme_color', 50)->nullable(); |
|
| 21 | - $table->timestamps(); |
|
| 22 | - }); |
|
| 23 | - } |
|
| 8 | + /** |
|
| 9 | + * Run the migrations. |
|
| 10 | + * |
|
| 11 | + * @return void |
|
| 12 | + */ |
|
| 13 | + public function up() |
|
| 14 | + { |
|
| 15 | + Schema::create('cms_roles', function(Blueprint $table) |
|
| 16 | + { |
|
| 17 | + $table->increments('id'); |
|
| 18 | + $table->string('name', 50)->nullable(); |
|
| 19 | + $table->boolean('is_superadmin')->nullable(); |
|
| 20 | + $table->string('theme_color', 50)->nullable(); |
|
| 21 | + $table->timestamps(); |
|
| 22 | + }); |
|
| 23 | + } |
|
| 24 | 24 | |
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * Reverse the migrations. |
|
| 28 | - * |
|
| 29 | - * @return void |
|
| 30 | - */ |
|
| 31 | - public function down() |
|
| 32 | - { |
|
| 33 | - Schema::drop('cms_roles'); |
|
| 34 | - } |
|
| 26 | + /** |
|
| 27 | + * Reverse the migrations. |
|
| 28 | + * |
|
| 29 | + * @return void |
|
| 30 | + */ |
|
| 31 | + public function down() |
|
| 32 | + { |
|
| 33 | + Schema::drop('cms_roles'); |
|
| 34 | + } |
|
| 35 | 35 | |
| 36 | 36 | } |
@@ -5,36 +5,36 @@ |
||
| 5 | 5 | |
| 6 | 6 | class CreateCmsPrivilegesRolesTable extends Migration { |
| 7 | 7 | |
| 8 | - /** |
|
| 9 | - * Run the migrations. |
|
| 10 | - * |
|
| 11 | - * @return void |
|
| 12 | - */ |
|
| 13 | - public function up() |
|
| 14 | - { |
|
| 15 | - Schema::create('cms_roles_privileges', function(Blueprint $table) |
|
| 16 | - { |
|
| 17 | - $table->increments('id'); |
|
| 18 | - $table->boolean('can_see_module')->nullable(); |
|
| 19 | - $table->boolean('can_create')->nullable(); |
|
| 20 | - $table->boolean('can_read')->nullable(); |
|
| 21 | - $table->boolean('can_edit')->nullable(); |
|
| 22 | - $table->boolean('can_delete')->nullable(); |
|
| 23 | - $table->integer('cms_roles_id')->nullable(); |
|
| 24 | - $table->integer('cms_modules_id')->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_roles_privileges', function(Blueprint $table) |
|
| 16 | + { |
|
| 17 | + $table->increments('id'); |
|
| 18 | + $table->boolean('can_see_module')->nullable(); |
|
| 19 | + $table->boolean('can_create')->nullable(); |
|
| 20 | + $table->boolean('can_read')->nullable(); |
|
| 21 | + $table->boolean('can_edit')->nullable(); |
|
| 22 | + $table->boolean('can_delete')->nullable(); |
|
| 23 | + $table->integer('cms_roles_id')->nullable(); |
|
| 24 | + $table->integer('cms_modules_id')->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_roles_privileges'); |
|
| 38 | - } |
|
| 30 | + /** |
|
| 31 | + * Reverse the migrations. |
|
| 32 | + * |
|
| 33 | + * @return void |
|
| 34 | + */ |
|
| 35 | + public function down() |
|
| 36 | + { |
|
| 37 | + Schema::drop('cms_roles_privileges'); |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | 40 | } |
@@ -104,7 +104,7 @@ |
||
| 104 | 104 | { |
| 105 | 105 | $roleId = cbUser()->cms_roles_id; |
| 106 | 106 | |
| 107 | - return cache()->rememberForever('cb_admin_privileges_roles'. $roleId, function () use ($roleId) { |
|
| 107 | + return cache()->rememberForever('cb_admin_privileges_roles'.$roleId, function() use ($roleId) { |
|
| 108 | 108 | return \DB::table('cms_roles_privileges')->where('cms_roles_id', $roleId)->join('cms_modules', 'cms_modules.id', '=', 'cms_roles_privileges.cms_modules_id')->select('cms_modules.name', 'cms_modules.path', 'can_see_module', 'can_create', 'can_read', 'can_edit', 'can_delete')->get() ?: []; |
| 109 | 109 | }); |
| 110 | 110 | } |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | $type = $form['type'] ?: 'text'; |
| 25 | 25 | $inputdata = request($name); |
| 26 | 26 | |
| 27 | - if (! $name || in_array($name, $hide_form) || $form['exception']) { |
|
| 27 | + if (!$name || in_array($name, $hide_form) || $form['exception']) { |
|
| 28 | 28 | continue; |
| 29 | 29 | } |
| 30 | 30 | |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | $this->genericLoader(); |
| 23 | 23 | $selectedIds = request('checkbox'); |
| 24 | 24 | $btnName = request('button_name'); |
| 25 | - if (! $selectedIds) { |
|
| 25 | + if (!$selectedIds) { |
|
| 26 | 26 | backWithMsg(cbTrans('at_least_one_row'), 'warning'); |
| 27 | 27 | } |
| 28 | 28 | if ($btnName == 'delete') { |
@@ -45,8 +45,8 @@ discard block |
||
| 45 | 45 | $message = cbTrans('alert_action', ['action' => $action]); |
| 46 | 46 | |
| 47 | 47 | if ($this->actionButtonSelected($id_selected, $button_name) === false) { |
| 48 | - $message = ! empty($this->alert['message']) ? $this->alert['message'] : 'Error'; |
|
| 49 | - $type = ! empty($this->alert['type']) ? $this->alert['type'] : 'danger'; |
|
| 48 | + $message = !empty($this->alert['message']) ? $this->alert['message'] : 'Error'; |
|
| 49 | + $type = !empty($this->alert['type']) ? $this->alert['type'] : 'danger'; |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | backWithMsg($message, $type); |
@@ -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 | } |
| 20 | 20 | |
| 21 | 21 | /** |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | */ |
| 44 | 44 | private function sendMail($html, $subject, $template) |
| 45 | 45 | { |
| 46 | - \Mail::send("crudbooster::emails.blank", ['content' => $html], function ($message) use ($subject, $template) { |
|
| 46 | + \Mail::send("crudbooster::emails.blank", ['content' => $html], function($message) use ($subject, $template) { |
|
| 47 | 47 | $message->priority(1); |
| 48 | 48 | $message->to($this->reciever); |
| 49 | 49 | |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | { |
| 7 | 7 | public static function getSetting($name) |
| 8 | 8 | { |
| 9 | - return cache()->rememberForever('crudbooster_setting_'.$name, function () use($name) { |
|
| 9 | + return cache()->rememberForever('crudbooster_setting_'.$name, function() use($name) { |
|
| 10 | 10 | return self::table()->where('name', $name)->first()->content; |
| 11 | 11 | }); |
| 12 | 12 | } |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | { |
| 16 | 16 | foreach ($data as $row) { |
| 17 | 17 | $count = self::table()->where('name', $row['name'])->count(); |
| 18 | - if (! $count) { |
|
| 18 | + if (!$count) { |
|
| 19 | 19 | self::table()->insert($row); |
| 20 | 20 | continue; |
| 21 | 21 | } |
@@ -77,7 +77,7 @@ |
||
| 77 | 77 | |
| 78 | 78 | private function validateForgotPass() |
| 79 | 79 | { |
| 80 | - $validator = \Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users',]); |
|
| 80 | + $validator = \Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users', ]); |
|
| 81 | 81 | |
| 82 | 82 | if ($validator->fails()) { |
| 83 | 83 | $message = $validator->errors()->all(); |