Drupal modules for browsing and managing Fedora-based digital repositories.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* This file contains all install functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_install().
|
|
|
|
*
|
|
|
|
* @see islandora_islandora_required_objects().
|
|
|
|
*/
|
|
|
|
function islandora_install() {
|
|
|
|
module_load_include('inc', 'islandora', 'includes/solution_packs');
|
|
|
|
// install object(s)
|
|
|
|
islandora_install_solution_pack('islandora');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_uninstall().
|
|
|
|
*
|
|
|
|
* @see islandora_islandora_required_objects().
|
|
|
|
*/
|
|
|
|
function islandora_uninstall() {
|
|
|
|
module_load_include('inc', 'islandora', 'includes/solution_packs');
|
|
|
|
// uninstall callback
|
|
|
|
islandora_install_solution_pack('islandora', 'uninstall');
|
|
|
|
}
|