summaryrefslogtreecommitdiff
path: root/modules/esha/sig/sig.module
diff options
context:
space:
mode:
authorFahad Israr2019-07-03 13:22:13 +0530
committerFahad Israr2019-07-03 13:22:13 +0530
commitfd04311179377ce2b4c5697be2ae2a2b51a1b2f3 (patch)
tree8fd529d45e37612de276b07be5caaa7335114c9a /modules/esha/sig/sig.module
parent35646d229739b283da6cf1e0958f1f7d28062442 (diff)
parent58dbf8fcb04c01c338b9e346b8266690c8b92a2f (diff)
downloadacadmix_distribution-fd04311179377ce2b4c5697be2ae2a2b51a1b2f3.tar.gz
acadmix_distribution-fd04311179377ce2b4c5697be2ae2a2b51a1b2f3.tar.bz2
acadmix_distribution-fd04311179377ce2b4c5697be2ae2a2b51a1b2f3.zip
Merge branch 'master' of https://github.com/FOSSEE/acadmix_distribution
Diffstat (limited to 'modules/esha/sig/sig.module')
-rw-r--r--modules/esha/sig/sig.module35
1 files changed, 35 insertions, 0 deletions
diff --git a/modules/esha/sig/sig.module b/modules/esha/sig/sig.module
new file mode 100644
index 0000000..72809bb
--- /dev/null
+++ b/modules/esha/sig/sig.module
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * @file
+ * Contains sig.module.
+ */
+
+use Drupal\Core\Routing\RouteMatchInterface;
+
+/**
+ * Implements hook_help().
+ */
+function sig_help($route_name, RouteMatchInterface $route_match) {
+ switch ($route_name) {
+ // Main module help for the sig module.
+ case 'help.page.sig':
+ $output = '';
+ $output .= '<h3>' . t('About') . '</h3>';
+ $output .= '<p>' . t('Module for Special Interest Groups Content Type') . '</p>';
+ return $output;
+
+ default:
+ }
+}
+
+/**
+ * Implements hook_theme().
+ */
+function sig_theme() {
+ return [
+ 'sig' => [
+ 'render element' => 'children',
+ ],
+ ];
+}