source: Dev/branches/Demo/classes/Logo.php @ 302

Last change on this file since 302 was 226, checked in by fpvanagthoven, 13 years ago
File size: 573 bytes
RevLine 
[142]1<?php
2/*
3 * To change this template, choose Tools | Templates
4 * and open the template in the editor.
5 */
6
7/**
8 * Description of Logo
9 *
10 * @author tschipper
11 */
12class Logo {
[226]13
[142]14    // hardcoded logo div, image is defined in stylesheet. (#logo background:"";)
15    public function __construct() {
[226]16        ?>
17
18        <div id="logo">
19            <div id="logoImage">
20                Research Tool
21            </div>
22            <div id="logoControls">
23                Welcome, Igor! <a href="logout.php">Log out</a>
24            </div>
25        </div>
26
27        <?php
[142]28    }
[226]29
[142]30}
31?>
Note: See TracBrowser for help on using the repository browser.