diff options
author | Nitesh Kumar Sinha | 2019-07-02 17:31:47 +0530 |
---|---|---|
committer | GitHub | 2019-07-02 17:31:47 +0530 |
commit | c63a20a2e293cb104027480a5770406e3f17c514 (patch) | |
tree | 4b429a480a1b52a2e90026f43d0a6e77c32e6899 /modules/bhavika/department/department.install | |
parent | 3ad1b8d590d7d11d83e8c923970690900dc31f70 (diff) | |
parent | dfbf9d3e8acfb503ddf7785b35b0ab85f7c3351a (diff) | |
download | acadmix_distribution-c63a20a2e293cb104027480a5770406e3f17c514.tar.gz acadmix_distribution-c63a20a2e293cb104027480a5770406e3f17c514.tar.bz2 acadmix_distribution-c63a20a2e293cb104027480a5770406e3f17c514.zip |
Merge pull request #12 from Bhavika-keswani/master
Welcome changed to clubs
Diffstat (limited to 'modules/bhavika/department/department.install')
-rw-r--r-- | modules/bhavika/department/department.install | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/modules/bhavika/department/department.install b/modules/bhavika/department/department.install new file mode 100644 index 0000000..7ea1cea --- /dev/null +++ b/modules/bhavika/department/department.install @@ -0,0 +1,63 @@ +<?php + + +/** + + +* Implements hook_uninstall(). + + +*/ + + +function department_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', 'department'); + + + $nids = $query->execute(); + + + + + + + + // Delete entities. + + + if (!empty($nids)) { + + + $entities = $nodeStorage->loadMultiple($nids); + + + $nodeStorage->delete($entities); + + + } + + +} |