You are here

function panels_threecol_25_50_25_panels_layouts in Panels 5

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

implementation of hook_panels_layouts

File

layouts/threecol_25_50_25.inc, line 5

Code

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