Blame view

common/config/params.php 1.75 KB
24a63083   Anastasia   first commit
1
2
  <?php
  return [
9d70b8a6   alex   1) добавил новые ...
3
4
      'adminEmail'                => 'admin@example.com',
      'supportEmail'              => 'support@example.com',
24a63083   Anastasia   first commit
5
      'user.passwordResetTokenExpire' => 3600,
9d70b8a6   alex   1) добавил новые ...
6
  	'pdf_instruction'           => [
c4c10a4a   alex   обновил программы...
7
8
9
10
  		'ru'    => 'forum_ru.pdf',
  		'en'    => 'forum_eng.pdf',
  		'ua'    => 'forum_ua.pdf',
  		'fr'    => 'forum_fr.pdf',
9a961bfe   alex   add new letters
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  	],
      # комнаты для письма пользователю. Здесь, потому что с них нужно будет рисовать таблицу
  	'hotels'        => [
  		'hotel1'                    => [
  			'id'    => 1,
  			'variants'  =>[
  				[
  					'name'  => 'room1', // \Yii('app''name')
  					'price' => '160 €',
  				],
  				[
  					'name'  => 'room2',
  					'price' => '220 €',
  				],
  				[
  					'name'  => 'room3',
  					'price' => '250 €',
  				],
  				[
  					'name'  => 'room4',
  					'price' => '310 €',
  				],
  				[
  					'name'  => 'room5',
  					'price' => '370 €',
  				],
  				[
  					'name'  => 'room6',
  					'price' => '480 €',
  				],
  
  
  			]
  		],
  		'hotel2'                    => [
  			'id'    => 2,
  			'variants'  =>[
  				[
  					'name'  => 'room7',
  					'price' => '80 €',
  				],
  				[
  					'name'  => 'room8',
  					'price' => '132 €',
  				],
  				[
  					'name'  => 'room9',
  					'price' => '260 €',
  				],
  			]
  		],	'hotel3'                    => [
  			'id'    => 3,
  			'variants'  =>[
  				[
  					'name'  => 'room7',
  					'price' => '80 €',
  				],
  				[
  					'name'  => 'room9',
  					'price' => '260 €',
  				],
  			]
  		],	'hotel4'                    => [
  			'id'    =>4,
  			'variants'  =>[
  				[
  					'name'  => 'room10',
  					'price' => '2280 €',
  				],
  				[
  					'name'  => 'room11',
  					'price' => '2520 €',
  				],
  				[
  					'name'  => 'room12',
  					'price' => '3540 €',
  				],
  			]
  		],
  
  
  
  		],
  
  
  
  
  
  
24a63083   Anastasia   first commit
100
  ];