-
Notifications
You must be signed in to change notification settings - Fork 0
/
boston_college.install
106 lines (100 loc) · 2.43 KB
/
boston_college.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
<?php
/**
* @file
* Module installation and update hooks.
*/
/**
* Implements hook_install().
*/
function boston_college_install() {
module_load_include('inc', 'islandora', 'includes/solution_packs');
islandora_install_solution_pack('boston_college');
}
/**
* Implements hook_uninstall().
*/
function boston_college_uninstall() {
$variables = array(
'boston_college_fop_executable',
'boston_college_pdftk_executable',
'boston_college_splash_xsl',
);
array_map('variable_del', $variables);
module_load_include('inc', 'islandora', 'includes/solution_packs');
islandora_install_solution_pack('boston_college', 'uninstall');
}
/**
* Implements hook_schema().
*/
function boston_college_schema() {
$schema['boston_college_handles'] = array(
'fields' => array(
'handle' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
),
'islandora_pid' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
),
'digitool_pid' => array(
'type' => 'varchar',
'length' => 128,
'not null' => FALSE,
),
'old_url' => array(
'type' => 'varchar',
'length' => 128,
'not null' => FALSE,
),
'updated' => array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array('handle'),
);
return $schema;
}
/**
* Adds a table to track Handles that need to be modified during the migration.
*/
function boston_college_update_7000() {
$schema['boston_college_handles'] = array(
'fields' => array(
'handle' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
),
'islandora_pid' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
),
'digitool_pid' => array(
'type' => 'varchar',
'length' => 128,
'not null' => FALSE,
),
'old_url' => array(
'type' => 'varchar',
'length' => 128,
'not null' => FALSE,
),
'updated' => array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array('islandora_pid'),
);
db_create_table('boston_college_handles', $schema['boston_college_handles']);
return t('Created table to track Handles.');
}