| 1 |
<?php
|
| 2 |
// $Id: util.module,v 1.13 2008/05/30 15:26:00 litwol Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
*/
|
| 7 |
|
| 8 |
/**
|
| 9 |
* Implementation of hook_menu().
|
| 10 |
*/
|
| 11 |
function util_menu() {
|
| 12 |
$menu['admin/settings/util'] = array(
|
| 13 |
'title' => 'Utilities',
|
| 14 |
'description' => "Helper Utilities for yur Drupal site.",
|
| 15 |
'page callback' => 'util_page',
|
| 16 |
'access arguments' => array('administer site configuration'),
|
| 17 |
);
|
| 18 |
return $menu;
|
| 19 |
}
|
| 20 |
|
| 21 |
function util_page() {
|
| 22 |
$output = "The Utility module is a grouping of commonly-needed utilities that are simple to code, everyone wants, but nobody actually codes them.";
|
| 23 |
menu_rebuild();
|
| 24 |
//for now output empty page, this is purely to reserve space for future development
|
| 25 |
return $output;
|
| 26 |
}
|