You are here

function theme_panels_twocol_stacked in Panels 5.2

Same name and namespace in other branches
  1. 5 layouts/twocol_stacked.inc \theme_panels_twocol_stacked()

This function uses heredoc notation to make it easier to convert to a template.

File

layouts/twocol_stacked.inc, line 27

Code

function theme_panels_twocol_stacked($id, $content) {
  if ($id) {
    $idstr = " id='{$id}'";
  }
  $output = <<<EOT
<div class="panel-2col-stacked clear-block panel-display" {<span class="php-variable">$idstr</span>}>
  <div class="panel-col-top panel-panel">
    <div class="inside">{<span class="php-variable">$content</span>[<span class="php-string">'top'</span>]}</div>
  </div>
  <div class="center-wrapper">
    <div class="panel-col-first panel-panel">
      <div class="inside">{<span class="php-variable">$content</span>[<span class="php-string">'left'</span>]}</div>
    </div>

    <div class="panel-col-last panel-panel">
      <div class="inside">{<span class="php-variable">$content</span>[<span class="php-string">'right'</span>]}</div>
    </div>
  </div>
  <div class="panel-col-bottom panel-panel">
    <div class="inside">{<span class="php-variable">$content</span>[<span class="php-string">'bottom'</span>]}</div>
  </div>
</div>
EOT;
  return $output;
}