t('Three column 33/34/33'), 'icon' => 'layouts/threecol_33_34_33.png', 'theme' => 'panels_threecol_33_34_33', 'css' => 'layouts/threecol_33_34_33.css', 'panels' => array( 'left' => t('Left side'), 'middle' => t('Middle column'), 'right' => t('Right side') ), ); return $items; } /** * This function uses heredoc notation to make it easier to convert * to a template. */ function theme_panels_threecol_33_34_33($id, $content) { if ($id) { $idstr = " id='$id'"; } $output = <<
$content[left]
$content[middle]
$content[right]
EOT; return $output; }