@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('cms_statistics', function (Blueprint $table) { |
|
15 | + Schema::create('cms_statistics', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name')->nullable(); |
18 | 18 | $table->string('slug')->nullable(); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('cms_menus_privileges', function (Blueprint $table) { |
|
15 | + Schema::create('cms_menus_privileges', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('id_cms_menus')->nullable(); |
18 | 18 | $table->integer('id_cms_privileges')->nullable(); |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::table('cms_apicustom', function (Blueprint $table) { |
|
15 | + Schema::table('cms_apicustom', function(Blueprint $table) { |
|
16 | 16 | // |
17 | 17 | $table->string('method_type', 25)->nullable(); |
18 | 18 | }); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | */ |
26 | 26 | public function down() |
27 | 27 | { |
28 | - Schema::table('cms_apicustom', function (Blueprint $table) { |
|
28 | + Schema::table('cms_apicustom', function(Blueprint $table) { |
|
29 | 29 | // |
30 | 30 | $table->dropColumn('method_type'); |
31 | 31 | }); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('cms_dashboard', function (Blueprint $table) { |
|
15 | + Schema::create('cms_dashboard', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | |
18 | 18 | $table->string('name')->nullable(); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('cms_statistic_components', function (Blueprint $table) { |
|
15 | + Schema::create('cms_statistic_components', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('id_cms_statistics')->nullable(); |
18 | 18 | $table->string('componentID')->nullable(); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('cms_email_templates', function (Blueprint $table) { |
|
15 | + Schema::create('cms_email_templates', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name')->nullable(); |
18 | 18 | $table->string('slug')->nullable(); |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::table('cms_logs', function (Blueprint $table) { |
|
15 | + Schema::table('cms_logs', function(Blueprint $table) { |
|
16 | 16 | // |
17 | 17 | $table->text('details')->nullable()->after('description'); |
18 | 18 | }); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | */ |
26 | 26 | public function down() |
27 | 27 | { |
28 | - Schema::table('cms_logs', function (Blueprint $table) { |
|
28 | + Schema::table('cms_logs', function(Blueprint $table) { |
|
29 | 29 | // |
30 | 30 | $table->dropColumn('details'); |
31 | 31 | }); |
@@ -268,5 +268,5 @@ |
||
268 | 268 | 'please_complete_the_form' =>'Пожалуйста заполните форму !', |
269 | 269 | 'this_field_is_required' =>'Это поле обязательное', |
270 | 270 | 'text_form' => 'Форма', |
271 | - "your_file_extension_is_not_allowed "=>"Тип фашего файла не поддерживается !", |
|
271 | + "your_file_extension_is_not_allowed "=>"Тип фашего файла не поддерживается !", |
|
272 | 272 | ]; |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | 'filter_in' => 'В', |
211 | 211 | 'filter_not_in' => 'НЕ В', |
212 | 212 | 'filter_between' => 'В ДИАПАЗОНЕ', |
213 | - 'filter_empty_or_null' => '<Пусто> (или NULL)', //SVV |
|
213 | + 'filter_empty_or_null' => '<Пусто> (или NULL)', //SVV |
|
214 | 214 | |
215 | 215 | 'filter_sort_ascending' => 'Сорт. по возр.', |
216 | 216 | 'filter_sort_descending' => 'Сорт. по убыв.', |
@@ -257,8 +257,8 @@ discard block |
||
257 | 257 | 'datamodal_select'=>'Выбрать', |
258 | 258 | 'datamodal_search_and_enter'=>'Найти и войти...', |
259 | 259 | 'datamodal_enter_to_search'=>'Нажмите Enter для поиска', |
260 | - 'datamodal_browse_data'=>'Выбрать данные' , |
|
261 | - 'datamodal_browse_file'=>'Выбрать файл' , |
|
260 | + 'datamodal_browse_data'=>'Выбрать данные', |
|
261 | + 'datamodal_browse_file'=>'Выбрать файл', |
|
262 | 262 | |
263 | 263 | |
264 | 264 | //child |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | { |
27 | 27 | $this->cbLoader(); |
28 | 28 | |
29 | - if (! CRUDBooster::isSuperadmin()) { |
|
29 | + if (!CRUDBooster::isSuperadmin()) { |
|
30 | 30 | CRUDBooster::insertLog(trans("crudbooster.log_try_view", ['name' => 'API Index', 'module' => 'API'])); |
31 | 31 | CRUDBooster::redirect(CRUDBooster::adminPath(), trans('crudbooster.denied_access')); |
32 | 32 | } |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | { |
128 | 128 | $this->cbLoader(); |
129 | 129 | |
130 | - if (! CRUDBooster::isSuperadmin()) { |
|
130 | + if (!CRUDBooster::isSuperadmin()) { |
|
131 | 131 | CRUDBooster::insertLog(trans("crudbooster.log_try_view", ['name' => 'API Index', 'module' => 'API'])); |
132 | 132 | CRUDBooster::redirect(CRUDBooster::adminPath(), trans('crudbooster.denied_access')); |
133 | 133 | } |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | { |
153 | 153 | $this->cbLoader(); |
154 | 154 | |
155 | - if (! CRUDBooster::isSuperadmin()) { |
|
155 | + if (!CRUDBooster::isSuperadmin()) { |
|
156 | 156 | CRUDBooster::insertLog(trans("crudbooster.log_try_view", ['name' => 'API Edit', 'module' => 'API'])); |
157 | 157 | CRUDBooster::redirect(CRUDBooster::adminPath(), trans('crudbooster.denied_access')); |
158 | 158 | } |