| 1 |
<?php |
<?php |
| 2 |
// $Id: unconed.theme,v 1.13 2005/03/27 10:41:55 tdobes Exp $ |
// $Id: unconed.theme,v 1.14 2005/03/31 19:53:49 tdobes Exp $ |
| 3 |
|
|
| 4 |
function unconed_features() { |
function unconed_features() { |
| 5 |
return array('logo', 'toggle_primary_links'); |
return array('logo', 'toggle_primary_links'); |
| 100 |
$output .= $tabs; |
$output .= $tabs; |
| 101 |
} |
} |
| 102 |
|
|
| 103 |
if ($help = menu_get_active_help()) { |
$output .= theme('help'); |
|
$output .= "<div id=\"help\">$help</div><hr />"; |
|
|
} |
|
| 104 |
|
|
| 105 |
$output .= theme_status_messages(); |
$output .= theme('status_messages'); |
| 106 |
|
|
| 107 |
$output .= "\n<!-- begin content -->\n"; |
$output .= "\n<!-- begin content -->\n"; |
| 108 |
$output .= $content; |
$output .= $content; |
| 331 |
return $output; |
return $output; |
| 332 |
} |
} |
| 333 |
|
|
| 334 |
|
function unconed_help() { |
| 335 |
|
if ($help = menu_get_active_help()) { |
| 336 |
|
return '<div class="help">'. $help .'</div><hr />'; |
| 337 |
|
} |
| 338 |
|
} |
| 339 |
|
|
| 340 |
?> |
?> |