From 96794064b20917436ce73aedf015a9d53e8d00fb Mon Sep 17 00:00:00 2001 From: Fahad Israr Date: Tue, 2 Jul 2019 12:21:29 +0530 Subject: Custom Modules Added --- .../academic_calendar_content.module | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 modules/fahad/academic_calendar_content/academic_calendar_content.module (limited to 'modules/fahad/academic_calendar_content/academic_calendar_content.module') diff --git a/modules/fahad/academic_calendar_content/academic_calendar_content.module b/modules/fahad/academic_calendar_content/academic_calendar_content.module new file mode 100644 index 0000000..9b4e25a --- /dev/null +++ b/modules/fahad/academic_calendar_content/academic_calendar_content.module @@ -0,0 +1,35 @@ +' . t('About') . ''; + $output .= '

' . t('Academic Calendar Content Type') . '

'; + return $output; + + default: + } +} + +/** + * Implements hook_theme(). + */ +function academic_calendar_content_theme() { + return [ + 'academic_calendar_content' => [ + 'render element' => 'children', + ], + ]; +} -- cgit