| 1 |
<?php |
<?php |
| 2 |
// $Id: slurpee.theme,v 1.18 2005/01/29 10:17:13 tdobes Exp $ |
// $Id: slurpee.theme,v 1.19 2005/03/31 19:53:49 tdobes Exp $ |
| 3 |
|
|
| 4 |
function slurpee_features() { |
function slurpee_features() { |
| 5 |
return array('toggle_name', 'toggle_mission', 'toggle_primary_links', 'toggle_search'); |
return array('toggle_name', 'toggle_mission', 'toggle_primary_links', 'toggle_search'); |
| 89 |
if ($tabs = theme('menu_local_tasks')) { |
if ($tabs = theme('menu_local_tasks')) { |
| 90 |
$output .= $tabs; |
$output .= $tabs; |
| 91 |
} |
} |
| 92 |
if ($help = menu_get_active_help()) { |
$output .= theme('help'); |
| 93 |
$output .= " <div id=\"help\">$help</div><hr />\n"; |
$output .= theme('status_messages'); |
|
} |
|
|
$output .= theme_status_messages(); |
|
| 94 |
|
|
| 95 |
$output .= "\n <!-- begin content -->\n"; |
$output .= "\n <!-- begin content -->\n"; |
| 96 |
$output .= $content; |
$output .= $content; |
| 248 |
$output .= " <br />\n\n"; |
$output .= " <br />\n\n"; |
| 249 |
return $output; |
return $output; |
| 250 |
} |
} |
| 251 |
|
|
| 252 |
|
function slurpee_help() { |
| 253 |
|
if ($help = menu_get_active_help()) { |
| 254 |
|
return '<div class="help">'. $help .'</div><hr />'; |
| 255 |
|
} |
| 256 |
|
} |
| 257 |
|
|
| 258 |
|
?> |