| 1 |
<?php |
<?php |
| 2 |
// $Id: station.module,v 1.55 2009/08/29 08:01:42 drewish Exp $ |
// $Id: station.module,v 1.56 2009/09/12 17:13:39 drewish Exp $ |
| 3 |
|
|
| 4 |
require_once(drupal_get_path('module', 'station') .'/dayhour.inc'); |
require_once(drupal_get_path('module', 'station') .'/dayhour.inc'); |
| 5 |
|
|
| 104 |
} |
} |
| 105 |
|
|
| 106 |
function station_page() { |
function station_page() { |
| 107 |
return ''; |
$output = ''; |
| 108 |
|
if ($content = system_admin_menu_block(menu_get_item())) { |
| 109 |
|
$output = theme('admin_block_content', $content); |
| 110 |
|
} |
| 111 |
|
return $output; |
| 112 |
} |
} |
| 113 |
|
|
| 114 |
|
|