Projet

Général

Profil

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

root / drupal7 / sites / all / modules / ds / drush / example_layout / example_layout.inc @ 651307cd

1
<?php
2

    
3
/**
4
 * @file
5
 * Display Suite example layout configuration.
6
 */
7

    
8
function ds_example_layout() {
9
  return array(
10
    'label' => t('Example layout'),
11
    'regions' => array(
12
      'left' => t('Left'),
13
      'right' => t('Right'),
14
    ),
15
    // Uncomment if you want to include a CSS file for this layout (example_layout.css)
16
    // 'css' => TRUE,
17
    // Uncomment if you want to include a preview for this layout (example_layout.png)
18
    // 'image' => TRUE,
19
  );
20
}