| 1 |
<?php |
<?php |
| 2 |
// $Id: sunflower.theme,v 1.22 2005/01/29 10:17:13 tdobes Exp $ |
// $Id: sunflower.theme,v 1.23 2005/03/31 19:53:49 tdobes Exp $ |
|
|
|
|
/** |
|
|
* Theme: sunflower |
|
|
* Author: Joe Lombardo (j0e) |
|
|
* Email: joe@familytimes.com |
|
|
* Description: Found on OSWD.com (Open Source Web Design). Listed as sunflower and |
|
|
* created by 'artwiz'. I've modified it to my tastes and drupalized it. Suggestions |
|
|
* are welcome. |
|
|
*/ |
|
| 3 |
|
|
| 4 |
function sunflower_features() { |
function sunflower_features() { |
| 5 |
return array('toggle_name', 'toggle_primary_links'); |
return array('toggle_name', 'toggle_primary_links'); |
| 108 |
$output .= $tabs; |
$output .= $tabs; |
| 109 |
} |
} |
| 110 |
|
|
| 111 |
if ($help = menu_get_active_help()) { |
$output .= theme('help'); |
|
$output .= "<div id=\"help\">$help</div><hr />"; |
|
|
} |
|
| 112 |
|
|
| 113 |
$output .= theme_status_messages(); |
$output .= theme('status_messages'); |
| 114 |
|
|
| 115 |
$output .= "\n<!-- begin content -->\n"; |
$output .= "\n<!-- begin content -->\n"; |
| 116 |
$output .= $content; |
$output .= $content; |
| 221 |
return $output; |
return $output; |
| 222 |
} // close comment function |
} // close comment function |
| 223 |
|
|
| 224 |
|
function sunflower_help() { |
| 225 |
|
if ($help = menu_get_active_help()) { |
| 226 |
|
return '<div class="help">'. $help .'</div><hr />'; |
| 227 |
|
} |
| 228 |
|
} // close help function |
| 229 |
|
|
| 230 |
?> |
?> |