Browse Source

update hook

pull/841/head
dannylamb 5 years ago committed by GitHub
parent
commit
5df5b7061b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      modules/islandora_core_feature/islandora_core_feature.install

16
modules/islandora_core_feature/islandora_core_feature.install

@ -135,3 +135,19 @@ function islandora_core_feature_update_8001(&$sandbox) {
]);
}
}
/**
* Delete actions that have to do with Gemini.
*/
function islandora_core_feature_update_8002() {
$config_factory = \Drupal::configFactory();
$action = $config_factory->getEditable('system.action.index_file_in_fedora');
if ($action) {
$action->delete();
}
$action = $config_factory->getEditable('system.action.delete_file_from_fedora');
if ($action) {
$action->delete();
}
}

Loading…
Cancel
Save