Projet

Général

Profil

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

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

1
<?php
2

    
3
/**
4
 * @file
5
 * Implementation of hook_panels_layouts.
6
 */
7
// Plugin definition.
8
$plugin = array(
9
  'title' => t('Three column 25/50/25'),
10
  'category' => t('Columns: 3'),
11
  'icon' => 'threecol_25_50_25.png',
12
  'theme' => 'panels_threecol_25_50_25',
13
  'theme arguments' => array('id', 'content'),
14
  'css' => 'threecol_25_50_25.css',
15
  'regions' => array(
16
    'left' => t('Left side'),
17
    'middle' => t('Middle column'),
18
    'right' => t('Right side'),
19
  ),
20
);