| 1 |
<?php |
<?php |
| 2 |
// $Id: marvinclassic.theme,v 1.3 2005/01/29 10:17:13 tdobes Exp $ |
// $Id: marvinclassic.theme,v 1.4 2005/03/31 19:53:49 tdobes Exp $ |
| 3 |
|
|
| 4 |
function marvinclassic_features() { |
function marvinclassic_features() { |
| 5 |
return array('logo', 'toggle_primary_links', 'toggle_secondary_links'); |
return array('logo', 'toggle_primary_links', 'toggle_secondary_links'); |
| 59 |
$output .= $tabs; |
$output .= $tabs; |
| 60 |
} |
} |
| 61 |
|
|
| 62 |
if ($help = menu_get_active_help()) { |
$output .= theme('help'); |
|
$output .= "<div id=\"help\">$help</div><hr />"; |
|
|
} |
|
| 63 |
|
|
| 64 |
$output .= theme_status_messages(); |
$output .= theme('status_messages'); |
| 65 |
|
|
| 66 |
$output .= "\n<!-- begin content -->\n"; |
$output .= "\n<!-- begin content -->\n"; |
| 67 |
$output .= $content; |
$output .= $content; |
| 174 |
function marvinclassic_links($links, $delimiter = " · ") { |
function marvinclassic_links($links, $delimiter = " · ") { |
| 175 |
return implode($delimiter, $links); |
return implode($delimiter, $links); |
| 176 |
} |
} |
| 177 |
|
|
| 178 |
|
function marvinclassic_help() { |
| 179 |
|
if ($help = menu_get_active_help()) { |
| 180 |
|
return '<div class="help">'. $help .'</div><hr />'; |
| 181 |
|
} |
| 182 |
|
} |
| 183 |
|
|
| 184 |
?> |
?> |