'panels', 'title' => t('Single column'), 'icon' => 'layouts/onecol.png', 'theme' => 'panels_onecol', 'css' => 'layouts/onecol.css', 'panels' => array('middle' => t('Middle column')), ); return $items; } /** * This function uses heredoc notation to make it easier to convert * to a template. */ function theme_panels_onecol($id, $content) { if ($id) { $idstr = " id='$id'"; } $output = <<
$content[middle]

EOT; return $output; }