Browse Source

undelete docs

pull/407/head
William Panting 11 years ago
parent
commit
9e3d08615f
  1. 9
      islandora.api.php
  2. 2
      islandora.module

9
islandora.api.php

@ -394,8 +394,17 @@ function hook_islandora_viewer_info() {
/**
* Returns a list of datastreams that are determined to be undeletable.
*
* The list is used to prevent delete links from being shown.
*
* @param array $models
* An array of content models for the current object.
*
* @return array
* An array of DSIDs that shouldn't be deleted.
*/
function hook_islandora_undeletable_datastreams(array $models) {
return array('DC', 'MODS');
}
/**

2
islandora.module

@ -1237,7 +1237,7 @@ function islandora_islandora_required_objects(IslandoraTuque $connection) {
}
/**
* Implements islandora_undeleteable_datastreams().
* Implements hook_islandora_undeleteable_datastreams().
*/
function islandora_islandora_undeletable_datastreams(array $models) {
return array('DC');

Loading…
Cancel
Save