Projet

Général

Profil

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

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

1
<?php
2

    
3
/**
4
 * @file
5
 * Implementation for the two column bricked layout.
6
 */
7

    
8
// Plugin definition.
9
$plugin = array(
10
  'title' => t('Two column bricks'),
11
  'category' => t('Columns: 2'),
12
  'icon' => 'twocol_bricks.png',
13
  'theme' => 'panels_twocol_bricks',
14
  'css' => 'twocol_bricks.css',
15
  'regions' => array(
16
    'top' => t('Top'),
17
    'left_above' => t('Left above'),
18
    'right_above' => t('Right above'),
19
    'middle' => t('Middle'),
20
    'left_below' => t('Left below'),
21
    'right_below' => t('Right below'),
22
    'bottom' => t('Bottom'),
23
  ),
24
);