Projet

Général

Profil

Paste
Télécharger (457 octets) Statistiques
| Branche: | Révision:

root / htmltest / sites / all / modules / panels / plugins / layouts / threecol_25_50_25 / threecol_25_50_25.inc @ c12e7e6a

1
<?php
2

    
3
/**
4
 * implementation of hook_panels_layouts
5
 */
6
// Plugin definition
7
$plugin = array(
8
  'title' => t('Three column 25/50/25'),
9
  'category' => t('Columns: 3'),
10
  'icon' => 'threecol_25_50_25.png',
11
  'theme' => 'panels_threecol_25_50_25',
12
  'theme arguments' => array('id', 'content'),
13
  'css' => 'threecol_25_50_25.css',
14
  'regions' => array(
15
    'left' => t('Left side'),
16
    'middle' => t('Middle column'),
17
    'right' => t('Right side')
18
  ),
19
);
20