onecol.inc 311 B

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