'panels', 'title' => t('Three column 33/34/33 stacked'), 'icon' => 'layouts/threecol_33_34_33_stacked.png', 'theme' => 'panels_threecol_33_34_33_stacked', 'css' => 'layouts/threecol_33_34_33_stacked.css', 'content areas' => array('top' => t('Top'), 'left' => t('Left side'), 'middle' => t('Middle column'), 'right' => t('Right side'), 'bottom' => t('Bottom')), ); return $items; } /** * This function uses heredoc notation to make it easier to convert * to a template. */ function theme_panels_threecol_33_34_33_stacked($id, $content) { if ($id) { $idstr = " id='$id'"; } $output = <<
$content[top]
$content[left]
$content[middle]
$content[right]
$content[bottom]

EOT; return $output; }