Projet

Général

Profil

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

root / drupal7 / sites / all / modules / panels / plugins / layouts / twocol / twocol.inc @ 08475715

1
<?php
2

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