You are here

function panels_threecol_25_50_25_panels_layouts in Panels 6.2

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

implementation of hook_panels_layouts

File

layouts/threecol_25_50_25/threecol_25_50_25.inc, line 6

Code

function panels_threecol_25_50_25_panels_layouts() {
  $items['threecol_25_50_25'] = array(
    'title' => t('Three column 25/50/25'),
    'icon' => 'threecol_25_50_25.png',
    'theme' => 'panels_threecol_25_50_25',
    'theme arguments' => array(
      'id',
      'content',
    ),
    'panels' => array(
      'left' => t('Left side'),
      'middle' => t('Middle column'),
      'right' => t('Right side'),
    ),
  );
  return $items;
}