| Commit | Line | Data |
|---|---|---|
| fc8f8fa8 EM |
1 | <?php |
| 2 | // $Id$ | |
| 3 | ||
| 4 | /** | |
| 5 | * Implementation of hook_panels_layouts(). | |
| 6 | */ | |
| 7 | function panels_threecol_33_34_33_panels_layouts() { | |
| 8 | $items['threecol_33_34_33'] = array( | |
| 9 | 'title' => t('Three column 33/34/33'), | |
| 10 | 'icon' => 'threecol_33_34_33.png', | |
| 11 | 'theme' => 'panels_threecol_33_34_33', | |
| 12 | 'css' => 'threecol_33_34_33.css', | |
| 13 | 'panels' => array( | |
| 14 | 'left' => t('Left side'), | |
| 15 | 'middle' => t('Middle column'), | |
| 16 | 'right' => t('Right side') | |
| 17 | ), | |
| 18 | ); | |
| 19 | ||
| 20 | return $items; | |
| 21 | } |