diff options
author | Nitesh Kumar Sinha | 2019-08-19 11:14:26 +0530 |
---|---|---|
committer | GitHub | 2019-08-19 11:14:26 +0530 |
commit | f8d43f51937aae5240b2885108fd08efab768155 (patch) | |
tree | 998c1d749bf3533d24a4799b53c79413dfce7eba /modules/kalpesh/research_area1_/research_area1_.install | |
parent | 58dbf8fcb04c01c338b9e346b8266690c8b92a2f (diff) | |
parent | 67eeae320422623bc2873b2c00afb8b29ec6160e (diff) | |
download | acadmix_distribution-master.tar.gz acadmix_distribution-master.tar.bz2 acadmix_distribution-master.zip |
merge with Stage
Diffstat (limited to 'modules/kalpesh/research_area1_/research_area1_.install')
-rw-r--r-- | modules/kalpesh/research_area1_/research_area1_.install | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/kalpesh/research_area1_/research_area1_.install b/modules/kalpesh/research_area1_/research_area1_.install new file mode 100644 index 0000000..65b64ff --- /dev/null +++ b/modules/kalpesh/research_area1_/research_area1_.install @@ -0,0 +1,26 @@ + +<?php +/** +* Implements hook_uninstall(). +*/ +function research_area1__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', 'research_area1_'); + $nids = $query->execute(); + + + + // Delete entities. + if (!empty($nids)) { + $entities = $nodeStorage->loadMultiple($nids); + $nodeStorage->delete($entities); + } +} |