diff options
Diffstat (limited to 'modules/kalpesh/laboratory/laboratory.install')
-rw-r--r-- | modules/kalpesh/laboratory/laboratory.install | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/modules/kalpesh/laboratory/laboratory.install b/modules/kalpesh/laboratory/laboratory.install new file mode 100644 index 0000000..68dfe55 --- /dev/null +++ b/modules/kalpesh/laboratory/laboratory.install @@ -0,0 +1,64 @@ +<?php + + +/** + + +* Implements hook_uninstall(). + + +*/ + + +function laboratory_uninstall() { //<-- replace “welcome” with your module machine name + + + // Load services. + + + $queryFactory = \Drupal::service('entity.query'); + + + $nodeStorage = \Drupal::entityManager()->getStorage('node'); + + + + + + + + // Query all entity. + + + $query = $queryFactory->get('node') +// <-- replace event in below line with your content type machine name + + + ->condition('type', 'laboratories'); + + + $nids = $query->execute(); + + + + + + + + // Delete entities. + + + if (!empty($nids)) { + + + $entities = $nodeStorage->loadMultiple($nids); + + + $nodeStorage->delete($entities); + + + } + + +} + |