You are here

function panels_twocol_bricks_panels_layouts in Panels 5.2

Same name and namespace in other branches
  1. 6.2 layouts/twocol_bricks/twocol_bricks.inc \panels_twocol_bricks_panels_layouts()

implementation of hook_panels_layouts

File

layouts/twocol_bricks.inc, line 13
twocol_bricks.inc

Code

function panels_twocol_bricks_panels_layouts() {
  $items['twocol_bricks'] = array(
    'title' => t('Two column bricks'),
    'icon' => 'layouts/twocol_bricks.png',
    'theme' => 'panels_twocol_bricks',
    'css' => 'layouts/twocol_bricks.css',
    'panels' => array(
      'top' => t('Top'),
      'left_above' => t('Left above'),
      'right_above' => t('Right above'),
      'middle' => t('Middle'),
      'left_below' => t('Left below'),
      'right_below' => t('Right below'),
      'bottom' => t('Bottom'),
    ),
  );
  return $items;
}