-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviews.install
650 lines (596 loc) · 20.2 KB
/
views.install
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
<?php
/**
* @file
* Contains install and update functions for Views.
*/
/**
* Implements hook_install().
*/
function views_install() {
if (Database::getConnection()->databaseType() == 'pgsql') {
db_query('CREATE OR REPLACE FUNCTION first(anyelement, anyelement) RETURNS anyelement AS \'SELECT COALESCE($1, $2);\' LANGUAGE \'sql\';');
db_query("DROP AGGREGATE IF EXISTS first(anyelement)");
db_query("CREATE AGGREGATE first(sfunc = first, basetype = anyelement, stype = anyelement);");
}
db_query("UPDATE {system} SET weight = 10 WHERE name = 'views'");
}
/**
* Implements hook_schema().
*/
function views_schema($caller_function = NULL) {
// Generate the current version of the database schema from the sequence of
// schema update functions. Uses a similar method to install.inc's
// drupal_get_schema_versions() to establish the update sequence.
//
// To change the schema, add a new views_schema_N() function to match the
// associated views_update_N().
//
// @param string $caller_function
// The name of the function that called us. Used internally, if requesting a
// specific schema version.
static $get_current;
static $schemas = array();
// If called with no arguments, get the latest version of the schema.
if (!isset($get_current)) {
$get_current = $caller_function ? FALSE : TRUE;
}
// Generate a sorted list of available schema update functions.
if ($get_current || empty($schemas)) {
$get_current = FALSE;
// Provide a worst-case scenario range.
$start_schema = 6000;
$end_schema = 7999;
for ($i = $start_schema; $i <= $end_schema; $i++) {
if (function_exists('views_schema_' . $i)) {
$schemas[] = $i;
}
}
if ($schemas) {
sort($schemas, SORT_NUMERIC);
// If a specific version was requested, drop any later updates from the
// sequence.
if ($caller_function) {
do {
$schema = array_pop($schemas);
} while ($schemas && $caller_function != 'views_schema_' . $schema);
}
}
}
// Call views_schema_<n>, for the highest available <n>.
if ($schema = array_pop($schemas)) {
$function = 'views_schema_' . $schema;
return $function();
}
return array();
}
/**
* Views 2's initial schema.
*
* Called directly by views_update_6000() for updates from Drupal 5.
*
* Important: Do not edit this schema!
*
* Updates to the views schema must be provided as views_schema_6xxx()
* functions, which views_schema() automatically sees and applies. See below for
* examples.
*
* Please do document updates with comments in this function, however.
*/
function views_schema_6000() {
$schema['views_view'] = array(
'description' => 'Stores the general data for a view.',
'export' => array(
'identifier' => 'view',
'bulk export' => TRUE,
'primary key' => 'vid',
'default hook' => 'views_default_views',
'admin_title' => 'human_name',
'admin_description' => 'description',
'api' => array(
'owner' => 'views',
'api' => 'views_default',
'minimum_version' => '2',
'current_version' => '3.0',
),
'object' => 'view',
// the callback to load the displays.
'subrecords callback' => 'views_load_display_records',
// the variable that holds enabled/disabled status.
'status' => 'views_defaults',
// CRUD callbacks.
'create callback' => 'views_new_view',
'save callback' => 'views_save_view',
'delete callback' => 'views_delete_view',
'export callback' => 'views_export_view',
'status callback' => 'views_export_status',
'cache defaults' => TRUE,
'default cache bin' => 'cache_views',
),
'fields' => array(
'vid' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'The view ID of the field, defined by the database.',
'no export' => TRUE,
),
'name' => array(
'type' => 'varchar',
'length' => '32',
'default' => '',
'not null' => TRUE,
'description' => 'The unique name of the view. This is the primary field views are loaded from, and is used so that views may be internal and not necessarily in the database. May only be alphanumeric characters plus underscores.',
),
'description' => array(
'type' => 'varchar',
'length' => '255',
'default' => '',
'description' => 'A description of the view for the admin interface.',
),
'tag' => array(
'type' => 'varchar',
'length' => '255',
'default' => '',
'description' => 'A tag used to group/sort views in the admin interface',
),
'view_php' => array(
'type' => 'blob',
'description' => 'A chunk of PHP code that can be used to provide modifications to the view prior to building.',
),
'base_table' => array(
'type' => 'varchar',
'length' => '32',
// Updated to '64' in views_schema_6005()
'default' => '',
'not null' => TRUE,
'description' => 'What table this view is based on, such as node, user, comment, or term.',
),
'is_cacheable' => array(
'type' => 'int',
'default' => 0,
'size' => 'tiny',
'description' => 'A boolean to indicate whether or not this view may have its query cached.',
),
),
'primary key' => array('vid'),
'unique key' => array('name' => array('name')),
// Updated to 'unique keys' in views_schema_6003()
);
$schema['views_display'] = array(
'description' => 'Stores information about each display attached to a view.',
'fields' => array(
'vid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'The view this display is attached to.',
'no export' => TRUE,
),
'id' => array(
'type' => 'varchar',
'length' => '64',
'default' => '',
'not null' => TRUE,
'description' => 'An identifier for this display; usually generated from the display_plugin, so should be something like page or page_1 or block_2, etc.',
),
'display_title' => array(
'type' => 'varchar',
'length' => '64',
'default' => '',
'not null' => TRUE,
'description' => 'The title of the display, viewable by the administrator.',
),
'display_plugin' => array(
'type' => 'varchar',
'length' => '64',
'default' => '',
'not null' => TRUE,
'description' => 'The type of the display. Usually page, block or embed, but is pluggable so may be other things.',
),
'position' => array(
'type' => 'int',
'default' => 0,
'description' => 'The order in which this display is loaded.',
),
'display_options' => array(
// Type corrected in update 6009
'type' => 'blob',
'description' => 'A serialized array of options for this display; it contains options that are generally only pertinent to that display plugin type.',
'serialize' => TRUE,
'serialized default' => 'a:0:{}',
),
),
// Added primary keys in views_schema_6008()
'indexes' => array('vid' => array('vid', 'position')),
);
$schema['cache_views'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['views_object_cache'] = array(
'description' => 'A special cache used to store objects that are being edited; it serves to save state in an ordinarily stateless environment.',
'fields' => array(
'sid' => array(
'type' => 'varchar',
'length' => '64',
'description' => 'The session ID this cache object belongs to.',
),
'name' => array(
'type' => 'varchar',
'length' => '32',
'description' => 'The name of the view this cache is attached to.',
),
'obj' => array(
'type' => 'varchar',
'length' => '32',
'description' => 'The name of the object this cache is attached to; this essentially represents the owner so that several sub-systems can use this cache.',
),
'updated' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'The time this cache was created or updated.',
),
'data' => array(
'type' => 'blob',
// Updated to 'text' (with size => 'big') in views_schema_6004()
'description' => 'Serialized data being stored.',
'serialize' => TRUE,
),
),
'indexes' => array(
'sid_obj_name' => array('sid', 'obj', 'name'),
'updated' => array('updated'),
),
);
// $schema['cache_views_data'] added in views_schema_6006().
return $schema;
}
/**
* Update a site to Drupal 6! Contains a bit of special code to detect
* if you've been running a beta version or something.
*/
function views_update_6000() {
if (db_table_exists('views_view')) {
return;
}
// This has the beneficial effect of wiping out any Views 1 cache at the
// same time; not wiping that cache could easily cause problems with Views 2.
if (db_table_exists('cache_views')) {
db_drop_table('cache_views');
}
// This is mostly the same as drupal_install_schema, but it forces
// views_schema_6000() rather than the default views_schema().
// This is important for processing subsequent table updates.
$schema = views_schema_6000();
_drupal_schema_initialize($schema, 'views');
foreach ($schema as $name => $table) {
db_create_table($name, $table);
}
}
/**
* Remove '$' symbol in special blocks, as it is invalid for theming.
*/
function views_update_6001() {
$result = db_query("SELECT * FROM {blocks} WHERE module = 'views' AND delta LIKE '\$exp%'");
foreach ($result as $block) {
$new = strtr($block->delta, '$', '-');
update_sql("UPDATE {blocks} SET delta = '" . db_escape_string($new) . "' WHERE module = 'views' AND delta = '" . db_escape_string($block->delta) . "'");
}
update_sql("UPDATE {blocks} SET delta = CONCAT(delta, '-block_1') WHERE module = 'views'");
}
/**
* NOTE: Update 6002 removed because it did not always work.
* Update 6004 implements the change correctly.
*/
/**
* Add missing unique key.
*/
function views_schema_6003() {
$schema = views_schema(__FUNCTION__);
$schema['views_view']['unique keys'] = array('name' => array('name'));
unset($schema['views_view']['unique key']);
return $schema;
}
function views_update_6003() {
db_add_unique_key('views_view', 'name', array('name'));
}
/**
* Enlarge the views_object_cache.data column to prevent truncation and JS
* errors.
*/
function views_schema_6004() {
$schema = views_schema(__FUNCTION__);
$schema['views_object_cache']['fields']['data']['type'] = 'text';
$schema['views_object_cache']['fields']['data']['size'] = 'big';
return $schema;
}
function views_update_6004() {
$new_field = array(
'type' => 'text',
'size' => 'big',
'description' => 'Serialized data being stored.',
'serialize' => TRUE,
);
// Drop and re-add this field because there is a bug in
// db_change_field that causes this to fail when trying to cast the data.
db_drop_field('views_object_cache', 'data');
db_add_field('views_object_cache', 'data', $new_field);
}
/**
* Enlarge the base_table column.
*/
function views_schema_6005() {
$schema = views_schema(__FUNCTION__);
$schema['views_view']['fields']['base_table']['length'] = 64;
return $schema;
}
function views_update_6005() {
$new_field = array(
'type' => 'varchar',
'length' => '64',
'default' => '',
'not null' => TRUE,
'description' => 'What table this view is based on, such as node, user, comment, or term.',
);
db_change_field('views_view', 'base_table', 'base_table', $new_field);
}
/**
* Add the cache_views_data table to support standard caching.
*/
function views_schema_6006() {
$schema = views_schema(__FUNCTION__);
$schema['cache_views_data'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_views_data']['description'] = 'Cache table for views to store pre-rendered queries, results, and display output.';
$schema['cache_views_data']['fields']['serialized']['default'] = 1;
return $schema;
}
function views_update_6006() {
$table = drupal_get_schema_unprocessed('system', 'cache');
$table['description'] = 'Cache table for views to store pre-rendered queries, results, and display output.';
$table['fields']['serialized']['default'] = 1;
db_create_table('cache_views_data', $table);
}
/**
* Add aggregate function to PostgreSQL so GROUP BY can be used to force only
* one result to be returned for each item.
*/
function views_update_6007() {
if (Database::getConnection()->databaseType() == 'pgsql') {
db_query('CREATE OR REPLACE FUNCTION first(anyelement, anyelement) RETURNS anyelement AS \'SELECT COALESCE($1, $2);\' LANGUAGE \'sql\';');
db_query("DROP AGGREGATE IF EXISTS first(anyelement)");
db_query("CREATE AGGREGATE first(sfunc = first, basetype = anyelement, stype = anyelement);");
}
}
/**
* Add the primary key to views_display table.
*/
function views_schema_6008() {
$schema = views_schema(__FUNCTION__);
$schema['views_display']['primary key'] = array('vid', 'id');
return $schema;
}
/**
* Add the primary key to the views_display table.
*/
function views_update_6008() {
db_add_primary_key('views_display', array('vid', 'id'));
}
/**
* Enlarge the views_display.display_options field to accommodate a larger set
* of configurations (e. g. fields, filters, etc.) on a display.
*/
function views_schema_6009() {
$schema = views_schema(__FUNCTION__);
$schema['views_display']['fields']['display_options'] = array(
'type' => 'text',
'size' => 'big',
'description' => 'A serialized array of options for this display; it contains options that are generally only pertinent to that display plugin type.',
'serialize' => TRUE,
'serialized default' => 'a:0:{}',
);
return $schema;
}
function views_update_6009() {
$schema = views_schema_6009();
if (Database::getConnection()->databaseType() == 'pgsql') {
db_query('ALTER TABLE {views_display} RENAME "display_options" TO "display_options_old"');
db_add_field('views_display', 'display_options', $schema['views_display']['fields']['display_options']);
$sql = "SELECT vid, id, display_options_old FROM {views_display}";
$result = db_query($sql);
foreach ($result as $row) {
$row['display_options_old'] = $row['display_options_old'];
$sql = "UPDATE {views_display} SET display_options = :display_optons WHERE vid = :vid AND id = :id";
db_query($sql, array(
':display_optons' => $row['display_options_old'],
':vid' => $row['vid'],
':id' => $row['id'],
));
}
db_drop_field('views_display', 'display_options_old');
}
else {
db_change_field('views_display', 'display_options', 'display_options', $schema['views_display']['fields']['display_options']);
}
}
/**
* Remove the view_php field.
*/
function views_schema_6010() {
$schema = views_schema(__FUNCTION__);
unset($schema['views_view']['fields']['view_php']);
unset($schema['views_view']['fields']['is_cacheable']);
return $schema;
}
/**
* Remove the view_php and is_cacheable field.
*/
function views_update_6010() {
db_drop_field('views_view', 'view_php');
db_drop_field('views_view', 'is_cacheable');
}
/**
* Remove views_object_cache table and move the data to ctools_object_cache.
*/
function views_schema_6011() {
$schema = views_schema(__FUNCTION__);
unset($schema['views_object_cache']);
return $schema;
}
/**
* Remove views_object_cache table and move the data to ctools_object_cache.
*/
function views_update_6011() {
$caches = db_query("SELECT * FROM {views_object_cache}");
foreach ($caches as $item) {
drupal_write_record('ctools_object_cache', $item);
}
db_drop_table('views_object_cache');
}
/**
* Correct the cache setting for exposed filter blocks.
*
* @see http://drupal.org/node/910864
*/
function views_update_6012() {
// There is only one simple query to run.
db_update('blocks')
->condition('module', 'views')
->condition('delta', db_like('-exp-') . '%', 'LIKE')
->fields(array('cache' => DRUPAL_NO_CACHE));
}
/**
* Add a human readable name.
*/
function views_schema_6013() {
$schema = views_schema(__FUNCTION__);
$schema['views_view']['fields']['human_name'] = array(
'type' => 'varchar',
'length' => '255',
'default' => '',
'description' => 'A human readable name used to be displayed in the admin interface',
);
return $schema;
}
function views_update_6013() {
// Check because D6 installs may already have added this.
if (!db_field_exists('views_view', 'human_name')) {
$new_field = array(
'type' => 'varchar',
'length' => '255',
'default' => '',
'description' => 'A human readable name used to be displayed in the admin interface',
);
db_add_field('views_view', 'human_name', $new_field);
}
}
function views_schema_6014() {
$schema = views_schema(__FUNCTION__);
$schema['views_view']['fields']['core'] = array(
'type' => 'int',
'default' => 0,
'description' => 'Stores the drupal core version of the view.',
);
return $schema;
}
/**
* Add a drupal core version field.
*/
function views_update_6014() {
// Check because D6 installs may already have added this.
if (!db_field_exists('views_view', 'core')) {
$new_field = array(
'type' => 'int',
'default' => 0,
'description' => 'Stores the drupal core version of the view.',
);
db_add_field('views_view', 'core', $new_field);
}
}
/**
* Rename some system variables.
*/
function views_update_7000() {
// Views now lets users turn off query details on live preview.
$query_on_top = variable_get('views_ui_query_on_top');
if (isset($query_on_top)) {
variable_set('views_ui_show_sql_query', TRUE);
if ($query_on_top) {
variable_set('views_ui_show_sql_query_where', 'above');
}
else {
variable_set('views_ui_show_sql_query_where', 'below');
}
variable_del('views_ui_query_on_top');
}
// Rename the views_hide_help_message variable from negative to positive.
$hide_help = variable_get('views_hide_help_message');
if (isset($hide_help)) {
variable_set('views_ui_show_advanced_help_warning', !$hide_help);
variable_del('views_hide_help_message');
}
// Rename the unused views_no_hover_links variable.
variable_del('views_no_hover_links');
}
/**
* Fix missing items from Views administrative breadcrumb.
*/
function views_update_7001() {
$depth = db_select('menu_links')
->fields('menu_links', array('depth'))
->condition('link_path', 'admin/structure/views/view/%')
->execute()
->fetchField();
if ($depth == 3) {
db_delete('menu_links')
->condition('link_path', 'admin/structure/views/%', 'LIKE')
->execute();
cache_clear_all(NULL, 'cache_menu');
menu_rebuild();
}
}
function views_schema_7300() {
return views_schema_6013();
}
/**
* Make sure the human_name field is added to the views_view table.
*
* If you updated from 6.x-2.x-dev to 7.x-3.x you already had schema
* version 6014, so update 6013 never was nor will be run. As a result,
* the human_name field is missing from the database.
*
* This will add the human_name field if it doesn't already exist.
*/
function views_update_7300() {
views_update_6013();
}
function views_schema_7301() {
$schema = views_schema(__FUNCTION__);
$schema['views_view']['fields']['name']['length'] = 128;
return $schema;
}
/**
* Enlarge the name column.
*/
function views_update_7301() {
$new_field = array(
'type' => 'varchar',
'length' => '128',
'default' => '',
'not null' => TRUE,
'description' => 'The unique name of the view. This is the primary field views are loaded from, and is used so that views may be internal and not necessarily in the database. May only be alphanumeric characters plus underscores.',
);
db_change_field('views_view', 'name', 'name', $new_field);
}
/**
* Remove headers field from cache tables.
*
* @see system_update_7054()
*/
function views_update_7302() {
if (db_field_exists('cache_views', 'headers')) {
db_drop_field('cache_views', 'headers');
}
if (db_field_exists('cache_views_data', 'headers')) {
db_drop_field('cache_views_data', 'headers');
}
}