summaryrefslogtreecommitdiff
path: root/modules/bhavika/legal_forms1/legal_forms1.install
diff options
context:
space:
mode:
authorNitesh Kumar Sinha2019-07-02 17:31:47 +0530
committerGitHub2019-07-02 17:31:47 +0530
commitc63a20a2e293cb104027480a5770406e3f17c514 (patch)
tree4b429a480a1b52a2e90026f43d0a6e77c32e6899 /modules/bhavika/legal_forms1/legal_forms1.install
parent3ad1b8d590d7d11d83e8c923970690900dc31f70 (diff)
parentdfbf9d3e8acfb503ddf7785b35b0ab85f7c3351a (diff)
downloadacadmix_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/legal_forms1/legal_forms1.install')
-rw-r--r--modules/bhavika/legal_forms1/legal_forms1.install63
1 files changed, 63 insertions, 0 deletions
diff --git a/modules/bhavika/legal_forms1/legal_forms1.install b/modules/bhavika/legal_forms1/legal_forms1.install
new file mode 100644
index 0000000..794dd6f
--- /dev/null
+++ b/modules/bhavika/legal_forms1/legal_forms1.install
@@ -0,0 +1,63 @@
+<?php
+
+
+/**
+
+
+* Implements hook_uninstall().
+
+
+*/
+
+
+function legal_forms1_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', 'legal_forms');
+
+
+ $nids = $query->execute();
+
+
+
+
+
+
+
+ // Delete entities.
+
+
+ if (!empty($nids)) {
+
+
+ $entities = $nodeStorage->loadMultiple($nids);
+
+
+ $nodeStorage->delete($entities);
+
+
+ }
+
+
+}