Projet

Général

Profil

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

root / drupal7 / sites / all / modules / panels / plugins / layouts / threecol_25_50_25_stacked / threecol_25_50_25_stacked.inc @ e4c061ad

1
<?php
2

    
3
// Plugin definition
4
$plugin = array(
5
  'title' => t('Three column 25/50/25 stacked'),
6
  'category' => t('Columns: 3'),
7
  'icon' => 'threecol_25_50_25_stacked.png',
8
  'theme' => 'panels_threecol_25_50_25_stacked',
9
  'css' => 'threecol_25_50_25_stacked.css',
10
  'regions' => array(
11
    'top' => t('Top'),
12
    'left' => t('Left side'),
13
    'middle' => t('Middle column'),
14
    'right' => t('Right side'),
15
    'bottom' => t('Bottom'),
16
  ),
17
);