source: WAeUP_Moodle/bteducation/footer.html @ 11738

Last change on this file since 11738 was 5573, checked in by Henrik Bettermann, 14 years ago

BT Education Moodle Theme

File size: 1.2 KB
Line 
1<?php
2
3    print_container_end(); // content container
4
5    print_container_start(false, '', 'footer');
6
7    echo '<p class="helplink">';
8    echo page_doc_link(get_string('moodledocslink'));
9    echo '</p>';
10
11
12    if ($navigation and false) { ?>
13    <div class="navbar clearfix">
14        <div class="breadcrumb"><?php print_navigation($navigation); ?></div>
15        <div class="menu"><?php echo $menu; ?></div>
16    </div>
17<?php }
18
19    echo '<hr />';
20    echo $loggedinas;
21    echo $homelink;
22
23    if (!empty($performanceinfo)) {
24        echo $performanceinfo;
25    }
26
27    if (debugging()) { ?>
28        <div class="validators"><ul>
29          <li><a href="http://validator.w3.org/check?verbose=1&amp;ss=1&amp;uri=<?php echo urlencode(qualified_me()) ?>">Validate HTML</a></li>
30          <li><a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=-1&amp;url1=<?php echo urlencode(qualified_me()) ?>">Section 508 Check</a></li>
31          <li><a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=0&amp;warnp2n3e=1&amp;url1=<?php echo urlencode(qualified_me()) ?>">WCAG 1 (2,3) Check</a></li>
32        </ul></div>
33<?php }
34
35    print_container_end();
36?>
37
38</div>
39</body>
40</html>
Note: See TracBrowser for help on using the repository browser.