diff options
author | Nitesh Kumar Sinha | 2019-07-02 13:32:26 +0530 |
---|---|---|
committer | GitHub | 2019-07-02 13:32:26 +0530 |
commit | 222f1780ed0f5c3536392df3236284d3a9ab5405 (patch) | |
tree | 582f05cc645901dfeb002ed3fe856e642a79835d /modules/bhavika/admission_program/admission_program.install | |
parent | 2ab059c88b1353a8e382f302ce9c2b6c2ef018ad (diff) | |
parent | 565af64fc81211897625be2b000a28c910174edb (diff) | |
download | acadmix_distribution-222f1780ed0f5c3536392df3236284d3a9ab5405.tar.gz acadmix_distribution-222f1780ed0f5c3536392df3236284d3a9ab5405.tar.bz2 acadmix_distribution-222f1780ed0f5c3536392df3236284d3a9ab5405.zip |
Merge pull request #7 from Bhavika-keswani/master
Bhavika-Custom modules added
Diffstat (limited to 'modules/bhavika/admission_program/admission_program.install')
-rw-r--r-- | modules/bhavika/admission_program/admission_program.install | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/modules/bhavika/admission_program/admission_program.install b/modules/bhavika/admission_program/admission_program.install new file mode 100644 index 0000000..d28043c --- /dev/null +++ b/modules/bhavika/admission_program/admission_program.install @@ -0,0 +1,63 @@ +<?php + + +/** + + +* Implements hook_uninstall(). + + +*/ + + +function admission_program_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', 'new'); + + + $nids = $query->execute(); + + + + + + + + // Delete entities. + + + if (!empty($nids)) { + + + $entities = $nodeStorage->loadMultiple($nids); + + + $nodeStorage->delete($entities); + + + } + + +} |