| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
* Drupal template file for No Koala! theme by Ross Kendall.
|
| 7 |
*
|
| 8 |
* This file contains theme hooks that are designed to override default
|
| 9 |
* theme functions. It is used with the phptemplate theme engine.
|
| 10 |
*/
|
| 11 |
|
| 12 |
/*
|
| 13 |
Copyright (C) 2006 Ross Kendall - http://rosskendall.com
|
| 14 |
|
| 15 |
This program is free software; you can redistribute it and/or
|
| 16 |
modify it under the terms of the GNU General Public License
|
| 17 |
as published by the Free Software Foundation; either version 2
|
| 18 |
of the License, or (at your option) any later version.
|
| 19 |
|
| 20 |
This program is distributed in the hope that it will be useful,
|
| 21 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 22 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 23 |
GNU General Public License for more details.
|
| 24 |
|
| 25 |
You should have received a copy of the GNU General Public License
|
| 26 |
along with this program; if not, write to the Free Software
|
| 27 |
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
| 28 |
http://www.gnu.org/copyleft/gpl.html
|
| 29 |
*/
|
| 30 |
|
| 31 |
/**
|
| 32 |
* Defines custom block regions for No Koala theme.
|
| 33 |
*
|
| 34 |
* @return
|
| 35 |
* Returns an assosiative array containing names and descriptions for
|
| 36 |
* defined block regions.
|
| 37 |
*/
|
| 38 |
function nokoala_regions() {
|
| 39 |
return array(
|
| 40 |
'content' => t('content'),
|
| 41 |
'top_menu' => t('top menu'),
|
| 42 |
'sidebar_left' => t('sidebar left (for admin)'),
|
| 43 |
'footer_message' => t('footer message')
|
| 44 |
);
|
| 45 |
}
|
| 46 |
|
| 47 |
?>
|