Parent Directory
|
Revision Log
|
Revision Graph
Various updates to make theme compatible across most browsers
| 1 | <?php |
| 2 | /** |
| 3 | * Declare the available regions implemented by this engine. |
| 4 | * |
| 5 | * @return |
| 6 | * An array of regions. The first array element will be used as the default region for themes. |
| 7 | */ |
| 8 | function sodelicious_regions() { |
| 9 | return array( |
| 10 | 'left' => t('left sidebar'), |
| 11 | 'right' => t('right sidebar'), |
| 12 | 'bottom' => t('bottom sidebar'), |
| 13 | 'content' => t('content'), |
| 14 | 'header' => t('header'), |
| 15 | 'footer' => t('footer'), |
| 16 | 'sponsors' => t('sponsors') |
| 17 | ); |
| 18 | } |
| 19 | |
| 20 | ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |