Projet

Général

Profil

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

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

1
<?php
2

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