summaryrefslogtreecommitdiff
path: root/modules/esha/onlinecourse/onlinecourse.install
blob: 7469bb9b64d7e3be3f5ded191c75f1e232814747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

<?php
/**
* Implements hook_uninstall().
*/
function onlinecourse_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', 'online_course'); 
 $nids = $query->execute();

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