98 lines
2.4 KiB
Plaintext
98 lines
2.4 KiB
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Install, update and uninstall functions for the shortcut module.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_install().
|
|
*/
|
|
function shortcut_install() {
|
|
$t = get_t();
|
|
// Create an initial default shortcut set.
|
|
$shortcut_set = new stdClass();
|
|
$shortcut_set->title = $t('Default');
|
|
$shortcut_set->links = array();
|
|
shortcut_set_save($shortcut_set);
|
|
}
|
|
|
|
/**
|
|
* Implements hook_uninstall().
|
|
*/
|
|
function shortcut_uninstall() {
|
|
drupal_load('module', 'shortcut');
|
|
// Delete the menu links associated with each shortcut set.
|
|
foreach (shortcut_sets() as $shortcut_set) {
|
|
menu_delete_links($shortcut_set->set_name);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Implements hook_schema().
|
|
*/
|
|
function shortcut_schema() {
|
|
$schema['shortcut_set'] = array(
|
|
'description' => 'Stores information about sets of shortcuts links.',
|
|
'fields' => array(
|
|
'set_name' => array(
|
|
'type' => 'varchar',
|
|
'length' => 32,
|
|
'not null' => TRUE,
|
|
'default' => '',
|
|
'description' => "Primary Key: The {menu_links}.menu_name under which the set's links are stored.",
|
|
),
|
|
'title' => array(
|
|
'type' => 'varchar',
|
|
'length' => 255,
|
|
'not null' => TRUE,
|
|
'default' => '',
|
|
'description' => 'The title of the set.',
|
|
),
|
|
),
|
|
'primary key' => array('set_name'),
|
|
'foreign keys' => array(
|
|
'menu_name' => array(
|
|
'table' => 'menu_links',
|
|
'columns' => array('set_name' => 'menu_name'),
|
|
),
|
|
),
|
|
);
|
|
|
|
$schema['shortcut_set_users'] = array(
|
|
'description' => 'Maps users to shortcut sets.',
|
|
'fields' => array(
|
|
'uid' => array(
|
|
'type' => 'int',
|
|
'unsigned' => TRUE,
|
|
'not null' => TRUE,
|
|
'default' => 0,
|
|
'description' => 'The {users}.uid for this set.',
|
|
),
|
|
'set_name' => array(
|
|
'type' => 'varchar',
|
|
'length' => 32,
|
|
'not null' => TRUE,
|
|
'default' => '',
|
|
'description' => "The {shortcut_set}.set_name that will be displayed for this user.",
|
|
),
|
|
),
|
|
'primary key' => array('uid'),
|
|
'indexes' => array(
|
|
'set_name' => array('set_name'),
|
|
),
|
|
'foreign keys' => array(
|
|
'set_user' => array(
|
|
'table' => 'users',
|
|
'columns' => array('uid' => 'uid'),
|
|
),
|
|
'set_name' => array(
|
|
'table' => 'shortcut_set',
|
|
'columns' => array('set_name' => 'set_name'),
|
|
),
|
|
),
|
|
);
|
|
|
|
return $schema;
|
|
}
|