You are here

function panels_threecol_33_34_33_panels_layouts in Panels 6.2

Same name and namespace in other branches
  1. 5.2 layouts/threecol_33_34_33.inc \panels_threecol_33_34_33_panels_layouts()
  2. 5 layouts/threecol_33_34_33.inc \panels_threecol_33_34_33_panels_layouts()

Implementation of hook_panels_layouts().

File

layouts/threecol_33_34_33/threecol_33_34_33.inc, line 6

Code

function panels_threecol_33_34_33_panels_layouts() {
  $items['threecol_33_34_33'] = array(
    'title' => t('Three column 33/34/33'),
    'icon' => 'threecol_33_34_33.png',
    'theme' => 'panels_threecol_33_34_33',
    'css' => 'threecol_33_34_33.css',
    'panels' => array(
      'left' => t('Left side'),
      'middle' => t('Middle column'),
      'right' => t('Right side'),
    ),
  );
  return $items;
}