| 1 |
<?php |
<?php |
| 2 |
/** $Id: adc.theme,v 1.17 2005/03/21 02:50:52 tdobes Exp $ |
/** $Id: adc.theme,v 1.18 2005/03/31 19:53:46 tdobes Exp $ |
| 3 |
* Theme for cuadc.org |
* Theme for cuadc.org |
| 4 |
* |
* |
| 5 |
* @author Alastair Maw (me@almaw.com) |
* @author Alastair Maw (me@almaw.com) |
| 70 |
$output .= $tabs; |
$output .= $tabs; |
| 71 |
} |
} |
| 72 |
|
|
| 73 |
if ($help = menu_get_active_help()) { |
$output .= theme('help'); |
|
$output .= "<div id=\"help\">$help</div><hr />"; |
|
|
} |
|
| 74 |
|
|
| 75 |
$output .= theme_status_messages(); |
$output .= theme('status_messages'); |
| 76 |
|
|
| 77 |
$output .= "\n<!-- begin content -->\n"; |
$output .= "\n<!-- begin content -->\n"; |
| 78 |
$output .= $content; |
$output .= $content; |
| 133 |
return $output; |
return $output; |
| 134 |
} |
} |
| 135 |
|
|
|
|
|
| 136 |
function adc_block($block) { |
function adc_block($block) { |
| 137 |
global $boxcounter; |
global $boxcounter; |
| 138 |
$boxcounter++; |
$boxcounter++; |
| 148 |
return $output; |
return $output; |
| 149 |
} |
} |
| 150 |
|
|
| 151 |
|
function adc_help() { |
| 152 |
|
if ($help = menu_get_active_help()) { |
| 153 |
|
return '<div class="help">'. $help .'</div><hr />'; |
| 154 |
|
} |
| 155 |
|
} |
| 156 |
|
|
| 157 |
?> |
?> |