twocol_bricks.inc 552 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @file
  4. * Implementation for the two column bricked layout.
  5. */
  6. // Plugin definition.
  7. $plugin = array(
  8. 'title' => t('Two column bricks'),
  9. 'category' => t('Columns: 2'),
  10. 'icon' => 'twocol_bricks.png',
  11. 'theme' => 'panels_twocol_bricks',
  12. 'css' => 'twocol_bricks.css',
  13. 'regions' => array(
  14. 'top' => t('Top'),
  15. 'left_above' => t('Left above'),
  16. 'right_above' => t('Right above'),
  17. 'middle' => t('Middle'),
  18. 'left_below' => t('Left below'),
  19. 'right_below' => t('Right below'),
  20. 'bottom' => t('Bottom'),
  21. ),
  22. );