|
Revision 861, 0.8 KB
(checked in by kester, 6 months ago)
|
|
clara: new panels layout
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | // $Id: twocol_bricks.inc,v 1.1.2.1 2008/12/16 21:27:59 merlinofchaos Exp $ |
|---|
| 3 | |
|---|
| 4 | /** |
|---|
| 5 | * @file fourcol_bricks.inc |
|---|
| 6 | * |
|---|
| 7 | * Implementation for the four column bricked layout for the nabuur homepage |
|---|
| 8 | */ |
|---|
| 9 | |
|---|
| 10 | /** |
|---|
| 11 | * Implementation of hook_panels_layouts(). |
|---|
| 12 | */ |
|---|
| 13 | function nabuurtheme_fourcol_bricks_panels_layouts() { |
|---|
| 14 | $items['fourcol_bricks'] = array( |
|---|
| 15 | 'title' => t('Four column bricks'), |
|---|
| 16 | 'icon' => 'fourcol_bricks.png', |
|---|
| 17 | 'theme' => 'nabuurtheme_fourcol_bricks', |
|---|
| 18 | 'css' => 'fourcol_bricks.css', |
|---|
| 19 | 'panels' => array( |
|---|
| 20 | 'top' => t('top'), |
|---|
| 21 | 'left_above' => t('Left above'), |
|---|
| 22 | 'right_above' => t('Right above'), |
|---|
| 23 | 'first_middle' => t('First middle'), |
|---|
| 24 | 'second_middle' => t('Second middle'), |
|---|
| 25 | 'third_middle' => t('Third middle'), |
|---|
| 26 | 'fourth_middle' => t('Fourth middle'), |
|---|
| 27 | 'bottom' => t('Bottom'), |
|---|
| 28 | ), |
|---|
| 29 | ); |
|---|
| 30 | return $items; |
|---|
| 31 | } |
|---|
| 32 | |
|---|