summaryrefslogtreecommitdiff
path: root/modules/bhavika/department/src/Controller/DepartmentController.php
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/department/src/Controller/DepartmentController.php
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/department/src/Controller/DepartmentController.php')
-rw-r--r--modules/bhavika/department/src/Controller/DepartmentController.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/bhavika/department/src/Controller/DepartmentController.php b/modules/bhavika/department/src/Controller/DepartmentController.php
new file mode 100644
index 0000000..58741f3
--- /dev/null
+++ b/modules/bhavika/department/src/Controller/DepartmentController.php
@@ -0,0 +1,25 @@
+<?php
+
+namespace Drupal\department\Controller;
+
+use Drupal\Core\Controller\ControllerBase;
+
+/**
+ * Class DepartmentController.
+ */
+class DepartmentController extends ControllerBase {
+
+ /**
+ * Department.
+ *
+ * @return string
+ * Return Hello string.
+ */
+ public function department() {
+ return [
+ '#type' => 'markup',
+ '#markup' => $this->t('Implement method: department')
+ ];
+ }
+
+}