summaryrefslogtreecommitdiff
path: root/modules/esha/lab/lab.module
blob: 65a0b7ed79251441f6d642e96e61f5f83011aea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php

/**
 * @file
 * Contains lab.module.
 */

use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function lab_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    // Main module help for the lab module.
    case 'help.page.lab':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Module for Lab Content Tyoe') . '</p>';
      return $output;

    default:
  }
}

/**
 * Implements hook_theme().
 */
function lab_theme() {
  return [
    'lab' => [
      'render element' => 'children',
    ],
  ];
}