summaryrefslogtreecommitdiff
path: root/modules/kalpesh/research_area1_/research_area1_.install
blob: 65b64ff9b4f1ecfe1343dcc475cc2dcb23eabe24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
 }
}