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.

20 lines
569 B

<?php
/**
* @file
* Install/update hooks for Islandora Collection Manager.
*/
/**
* Add configurable container models, preserving the previous hard-coded set.
*/
function islandora_collection_manager_update_10003(): void {
$config = \Drupal::configFactory()->getEditable('islandora_collection_manager.settings');
if ($config->get('container_model_uris') === NULL) {
$config->set('container_model_uris', [
'http://purl.org/dc/dcmitype/Collection',
'http://vocab.getty.edu/aat/300242735',
'https://schema.org/Book',
])->save();
}
}