You are here

admin-toolbar.tpl.php in Admin 6

File

toolbar/admin-toolbar.tpl.php
View source
<div id='admin-toolbar' class='clear-block'>
  <?php

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

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

    print $links;
    ?>
      <?php

  }
  ?>
    </div>
  <?php

}
?>

  <?php

if (!empty($tree_1)) {
  ?>
    <div class='depth-1 clear-block <?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>