source: Dev/trunk/classes/Logo.php @ 185

Last change on this file since 185 was 168, checked in by fpvanagthoven, 13 years ago
  • moveStep() [js] werkt weer, editor is nu op delete/clear na helemaal functioneel
  • Zit nog steeds een creator bug in savesession.php en selectSession.php
  • getInfo.php is nu aangepast om voor meerdere objecttypes te werken en relevante informatie terug te geven, geformatteerd als table. De styling hiervan moet wel nog beter geregeld worden.
File size: 594 bytes
Line 
1<?php
2
3/*
4 * To change this template, choose Tools | Templates
5 * and open the template in the editor.
6 */
7
8/**
9 * Description of Logo
10 *
11 * @author tschipper
12 */
13class Logo {
14   
15    // hardcoded logo div, image is defined in stylesheet. (#logo background:"";)
16    public function __construct() {
17        echo '<div id="logo"><a href="index.php">Research Tool</a>';
18        if (isset($_SESSION['username'])) {
19            echo '<a href="index.php" onClick="savePipeline(true);" style="display:block; font-size: 12px;">Log out</a>';
20        }
21        echo '</div>';
22   
23    }
24   
25   
26}
27
28?>
Note: See TracBrowser for help on using the repository browser.