'Utilities', 'description' => "Helper Utilities for yur Drupal site.", 'page callback' => 'util_page', ); return $menu; } function util_page() { $output = "The Utility module is a grouping of commonly-needed utilities that are simple to code, everyone wants, but nobody actually codes them."; menu_rebuild(); //for now output empty page, this is purely to reserve space for future development return $output; }