diff options
author | Nitesh Kumar Sinha | 2019-07-02 17:40:53 +0530 |
---|---|---|
committer | GitHub | 2019-07-02 17:40:53 +0530 |
commit | 58dbf8fcb04c01c338b9e346b8266690c8b92a2f (patch) | |
tree | ab16a85a8213c31f2abaf34e9d7df44a0f7132ac /modules/esha/labmanual/labmanual.module | |
parent | c63a20a2e293cb104027480a5770406e3f17c514 (diff) | |
parent | 0d50e51638dac37bb5133b5024f2e44811e2745e (diff) | |
download | acadmix_distribution-58dbf8fcb04c01c338b9e346b8266690c8b92a2f.tar.gz acadmix_distribution-58dbf8fcb04c01c338b9e346b8266690c8b92a2f.tar.bz2 acadmix_distribution-58dbf8fcb04c01c338b9e346b8266690c8b92a2f.zip |
Merge pull request #15 from FOSSEE/stage
merging Stage into master
Diffstat (limited to 'modules/esha/labmanual/labmanual.module')
-rw-r--r-- | modules/esha/labmanual/labmanual.module | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/modules/esha/labmanual/labmanual.module b/modules/esha/labmanual/labmanual.module new file mode 100644 index 0000000..5782054 --- /dev/null +++ b/modules/esha/labmanual/labmanual.module @@ -0,0 +1,35 @@ +<?php + +/** + * @file + * Contains labmanual.module. + */ + +use Drupal\Core\Routing\RouteMatchInterface; + +/** + * Implements hook_help(). + */ +function labmanual_help($route_name, RouteMatchInterface $route_match) { + switch ($route_name) { + // Main module help for the labmanual module. + case 'help.page.labmanual': + $output = ''; + $output .= '<h3>' . t('About') . '</h3>'; + $output .= '<p>' . t('Module for Lab Manual Content Type') . '</p>'; + return $output; + + default: + } +} + +/** + * Implements hook_theme(). + */ +function labmanual_theme() { + return [ + 'labmanual' => [ + 'render element' => 'children', + ], + ]; +} |