summaryrefslogtreecommitdiff
path: root/modules/kalpesh/achivements/achivements.install
blob: 9ea9eb623c35fd5368c1f870f485494d406d32f1 (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 achivements_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', 'achivements'); 
 $nids = $query->execute();



 // Delete entities.
 if (!empty($nids)) {
   $entities = $nodeStorage->loadMultiple($nids);
   $nodeStorage->delete($entities);
 }
}