Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / tests / resources / modules / d7 / woot / woot.module
diff --git a/vendor/drush/drush/tests/resources/modules/d7/woot/woot.module b/vendor/drush/drush/tests/resources/modules/d7/woot/woot.module
deleted file mode 100644 (file)
index f51b34a..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-/**
- * Implements hook_menu
- */
-function woot_menu() {
-  $items = array();
-
-  $items['woot'] = array(
-    'title' => 'Woot',
-    'description' => 'Woot mightily.',
-    'page callback' => 'woot_page',
-    'access callback' => TRUE,
-    'type' => MENU_CALLBACK,
-  );
-
-  return $items;
-}
-
-function woot_page() {
-  return array('#markup' => 'Woot!');
-}