You are here

function panels_twocol_bricks_panels_layouts in Panels 6.2

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

Implementation of hook_panels_layouts().

File

layouts/twocol_bricks/twocol_bricks.inc, line 12
twocol_bricks.inc

Code

function panels_twocol_bricks_panels_layouts() {
  $items['twocol_bricks'] = array(
    'title' => t('Two column bricks'),
    'icon' => 'twocol_bricks.png',
    'theme' => 'panels_twocol_bricks',
    'css' => '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;
}