Projet

Général

Profil

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

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

1
<?php
2

    
3
/**
4
 * @file
5
 * Implementation of hook_panels_layouts().
6
 */
7
// Plugin definition.
8
$plugin = array(
9
  'title' => t('Single column'),
10
  'category' => t('Columns: 1'),
11
  'icon' => 'onecol.png',
12
  'theme' => 'panels_onecol',
13
  'css' => 'onecol.css',
14
  'regions' => array('middle' => t('Middle column')),
15
);