Projet

Général

Profil

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

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

1
<?php
2

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