util.module in Util 6
Same filename and directory in other branches
File
util.moduleView source
<?php
function util_menu() {
$menu['admin/settings/util'] = array(
'title' => '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;
}