-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroomify_rate.install
More file actions
339 lines (318 loc) · 9.35 KB
/
Copy pathroomify_rate.install
File metadata and controls
339 lines (318 loc) · 9.35 KB
1
2
3
4
5
6
7
8
9
10
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
<?php
/**
* @file
* Install, update and uninstall functions for the Roomify Rate module.
*/
/**
* Implements hook_install().
*/
function roomify_rate_install() {
// Create "Standard" rate type.
roomify_rate_create_standard_rate_type();
// Create "Standard" rate restriction type.
roomify_rate_create_standard_rate_restriction_type();
}
/**
* Implements hook_schema().
*/
function roomify_rate_schema() {
$schema = array();
$schema['roomify_rates'] = array(
'description' => 'The base table for Rates.',
'fields' => array(
'rate_id' => array(
'description' => 'Primary Key: Identifier for a Rate.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'type' => array(
'description' => 'The {rate_type}.type of this Rate.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'language' => array(
'description' => 'The language of the Rate.',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'name' => array(
'description' => 'The name of the Rate - a human-readable identifier.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'created' => array(
'description' => 'The Unix timestamp when the Rate was created.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'changed' => array(
'description' => 'The Unix timestamp when the Rate was most recently saved.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'uid' => array(
'description' => 'The {users}.uid that created this rate.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
'serialize' => TRUE,
'description' => 'A serialized array of additional data.',
),
),
'primary key' => array('rate_id'),
'indexes' => array(
'type' => array('type'),
),
);
$schema['roomify_rate_types'] = array(
'description' => 'The base table for Rate Types.',
'fields' => array(
'id' => array(
'type' => 'serial',
'not null' => TRUE,
'description' => 'Primary Key: Identifier for a rate type.',
),
'type' => array(
'description' => 'The {rate_type}.type of this rate type.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
),
'label' => array(
'description' => 'The human-readable name of this rate type.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
'serialize' => TRUE,
'description' => 'A serialized array of additional data.',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0x01,
'size' => 'tiny',
'description' => 'The exportable status of the entity.',
),
'module' => array(
'description' => 'The name of the providing module if the entity has been defined in code.',
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
),
),
'primary key' => array('id'),
'unique keys' => array(
'type' => array('type'),
),
);
$schema['roomify_rate_restrictions'] = array(
'description' => 'The base table for Rate restrictions.',
'fields' => array(
'rate_restriction_id' => array(
'description' => 'Primary Key: Identifier for a Rate restriction.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'type' => array(
'description' => 'The {rate_restriction_type}.type of this Rate restriction.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'language' => array(
'description' => 'The language of the Rate restriction.',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'label' => array(
'description' => 'The label of the Rate restriction.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'created' => array(
'description' => 'The Unix timestamp when the Rate restriction was created.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'changed' => array(
'description' => 'The Unix timestamp when the Rate restriction was most recently saved.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'uid' => array(
'description' => 'The {users}.uid that created this rate restriction.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
'serialize' => TRUE,
'description' => 'A serialized array of additional data.',
),
),
'primary key' => array('rate_restriction_id'),
'indexes' => array(
'type' => array('type'),
),
);
$schema['roomify_rate_restriction_types'] = array(
'description' => 'The base table for Rate Restriction Types.',
'fields' => array(
'id' => array(
'type' => 'serial',
'not null' => TRUE,
'description' => 'Primary Key: Identifier for a rate restriction type.',
),
'type' => array(
'description' => 'The {rate_restriction_type}.type of this rate restriction type.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
),
'label' => array(
'description' => 'The human-readable name of this rate restriction type.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
'serialize' => TRUE,
'description' => 'A serialized array of additional data.',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0x01,
'size' => 'tiny',
'description' => 'The exportable status of the entity.',
),
'module' => array(
'description' => 'The name of the providing module if the entity has been defined in code.',
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
),
),
'primary key' => array('id'),
'unique keys' => array(
'type' => array('type'),
),
);
return $schema;
}
/**
* Create "Standard" rate type.
*/
function roomify_rate_create_standard_rate_type() {
$rate_type = roomify_rate_type_create(array(
'label' => 'Standard',
'type' => 'standard',
));
$rate_type->save();
}
/**
* Create "Standard" rate restriction type.
*/
function roomify_rate_create_standard_rate_restriction_type() {
$rate_restriction_type = roomify_rate_restriction_type_create(array(
'label' => 'Standard',
'type' => 'standard',
));
$rate_restriction_type->save();
}
/**
* Remove default value from fields 'Rate Valid From' and 'Rate Valid To'.
*/
function roomify_rate_update_7001() {
$bundles = roomify_rate_get_restriction_types();
foreach ($bundles as $bundle) {
$type_bundle = $bundle->type;
if (field_read_instance('roomify_rate_restriction', 'rate_valid_from', $type_bundle)) {
$instance = array(
'field_name' => 'rate_valid_from',
'entity_type' => 'roomify_rate_restriction',
'label' => 'Rate Valid From',
'bundle' => $type_bundle,
'required' => FALSE,
'widget' => array(
'type' => 'date_popup',
),
'settings' => array(
'default_value' => 'blank',
'default_value2' => 'same',
'default_value_code' => '',
'default_value_code2' => '',
'user_register_form' => FALSE,
),
);
field_update_instance($instance);
}
if (field_read_instance('roomify_rate_restriction', 'rate_valid_to', $type_bundle)) {
$instance = array(
'field_name' => 'rate_valid_to',
'entity_type' => 'roomify_rate_restriction',
'label' => 'Rate Valid To',
'bundle' => $type_bundle,
'required' => FALSE,
'widget' => array(
'type' => 'date_popup',
),
'settings' => array(
'default_value' => 'blank',
'default_value2' => 'same',
'default_value_code' => '',
'default_value_code2' => '',
'user_register_form' => FALSE,
),
);
field_update_instance($instance);
}
}
}
/**
* Add 'Minimum People' and 'Maximum People' fields.
*/
function roomify_rate_update_7002() {
module_load_include('inc', 'roomify_rate', 'roomify_rate.fields');
$bundles = roomify_rate_get_restriction_types();
foreach ($bundles as $bundle) {
$type_bundle = $bundle->type;
roomify_rate_add_minimum_people_field($type_bundle);
roomify_rate_add_maximum_people_field($type_bundle);
}
}