summaryrefslogtreecommitdiff
path: root/modules/bhavika/photo_gallery/photo_gallery.install
diff options
context:
space:
mode:
Diffstat (limited to 'modules/bhavika/photo_gallery/photo_gallery.install')
-rw-r--r--modules/bhavika/photo_gallery/photo_gallery.install63
1 files changed, 63 insertions, 0 deletions
diff --git a/modules/bhavika/photo_gallery/photo_gallery.install b/modules/bhavika/photo_gallery/photo_gallery.install
new file mode 100644
index 0000000..4c95c95
--- /dev/null
+++ b/modules/bhavika/photo_gallery/photo_gallery.install
@@ -0,0 +1,63 @@
+<?php
+
+
+/**
+
+
+* Implements hook_uninstall().
+
+
+*/
+
+
+function photo_gallery_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', 'photo_gallert');
+
+
+ $nids = $query->execute();
+
+
+
+
+
+
+
+ // Delete entities.
+
+
+ if (!empty($nids)) {
+
+
+ $entities = $nodeStorage->loadMultiple($nids);
+
+
+ $nodeStorage->delete($entities);
+
+
+ }
+
+
+}