123456789101112131415 |
- <?php
- /**
- * @file
- * Implementation of hook_panels_layouts().
- */
- // Plugin definition.
- $plugin = array(
- 'title' => t('Column'),
- 'category' => t('Columns: 1'),
- 'icon' => 'column.png',
- 'theme' => 'panels_column',
- 'css' => 'column.css',
- 'regions' => array('middle' => t('Middle column')),
- );
|