Simpletest Coverage - modules/toolbar/toolbar.tpl.php

1 <?php
2 // $Id: toolbar.tpl.php,v 1.2 2009/07/29 12:28:41 dries Exp $
3
4 /**
5 * @file
6 * Default template for admin toolbar.
7 *
8 * Available variables:
9 * - $toolbar['toolbar_user']: User account / logout links.
10 * - $toolbar['toolbar_menu']: Top level management menu links.
11 * - $toolbar['toolbar_shortcuts']: Convenience shortcuts.
12 *
13 * @see template_preprocess()
14 * @see template_preprocess_admin_toolbar()
15 */
16 ?>
17 <div id="toolbar" class="clearfix">
18 <div class="toolbar-menu clearfix">
19 <span class="toggle toggle-active"><?php print t('Show shortcuts'); ?></span>
20 <?php print render($toolbar['toolbar_menu']); ?>
21 <?php print render($toolbar['toolbar_user']); ?>
22 </div>
23
24 <div class="toolbar-shortcuts clearfix">
25 <?php print render($toolbar['toolbar_shortcuts']); ?>
26 </div>
27
28 <div class="shadow"></div>
29 </div>
30

Legend

Missed
lines code that were not excersized during program execution.
Covered
lines code were excersized during program execution.
Comment/non executable
Comment or non-executable line of code.
Dead
lines of code that according to xdebug could not be executed. This is counted as coverage code because in almost all cases it is code that runnable.