Browse Source

Initial files for new branch

logicp 8 years ago
parent
commit
ecdbc289df
2 changed files with 29 additions and 0 deletions
  1. 5 0
      heartbeat8.info.yml
  2. 24 0
      heartbeat8.module

+ 5 - 0
heartbeat8.info.yml

@@ -0,0 +1,5 @@
+name: heartbeat8
+type: module
+description: Heartbeat for Drupal 8
+core: 8.x
+package: Heartbeat

+ 24 - 0
heartbeat8.module

@@ -0,0 +1,24 @@
+<?php
+
+/**
+ * @file
+ * Contains heartbeat8.module..
+ */
+
+use Drupal\Core\Routing\RouteMatchInterface;
+
+/**
+ * Implements hook_help().
+ */
+function heartbeat8_help($route_name, RouteMatchInterface $route_match) {
+  switch ($route_name) {
+    // Main module help for the heartbeat8 module.
+    case 'help.page.heartbeat8':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('Heartbeat for Drupal 8') . '</p>';
+      return $output;
+
+    default:
+  }
+}