merci_test_content.install in MERCI (Manage Equipment Reservations, Checkout and Inventory) 8.2
File
modules/merci_test_content/merci_test_content.installView source
<?php
function merci_test_content_uninstall() {
$nodes = \Drupal::entityTypeManager()
->getStorage('node')
->loadByProperties([
'type' => 'merci_resource',
]);
foreach ($nodes as $node) {
$node
->delete();
}
$nodes = \Drupal::entityTypeManager()
->getStorage('node')
->loadByProperties([
'type' => 'office_hours',
]);
foreach ($nodes as $node) {
$node
->delete();
}
$nodes = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadByProperties([
'vid' => 'resource_tree',
]);
foreach ($nodes as $node) {
$node
->delete();
}
}
Functions
Name | Description |
---|---|
merci_test_content_uninstall |