You are here

quickbar.tpl.php in Quickbar 7

Same filename and directory in other branches
  1. 6 theme/quickbar.tpl.php
  2. 7.2 theme/quickbar.tpl.php

File

theme/quickbar.tpl.php
View source
<div id='quickbar' class='clearfix<?php

print $wrapper_class;
?>'>
  <?php

if (!empty($tree_0)) {
  ?>
    <div class='depth-0 clearfix'>
      <?php

  foreach ($tree_0 as $links) {
    ?>
        <?php

    print $links;
    ?>
      <?php

  }
  ?>
    </div>
  <?php

}
?>

  <?php

if (!empty($tree_1)) {
  ?>
    <div class='depth-1 clearfix <?php

  if ($collapsed) {
    print 'collapsed';
  }
  ?>'>
      <span class='close'><?php

  print t('Close');
  ?></span>
      <?php

  foreach ($tree_1 as $links) {
    ?>
        <?php

    print $links;
    ?>
      <?php

  }
  ?>
    </div>
  <?php

}
?>

  <div class='shadow'></div>
</div>