Last change
on this file since 167 was
167,
checked in by fpvanagthoven, 13 years ago
|
- Save functie verbeterd, nu confirm? parameter.
- Begin aan infopanel gemaakt
- moveStep functie in JS gezet, werkt nog niet helemaal goed (refreshed niet!)
- General CSS layout verbeterd van pipelineEditor.php
- edit button werkt nu.
- saveSession zit nog steeds een error in, nog niet weten te fixen. Heeft met creator te maken.
|
File size:
579 bytes
|
Rev | Line | |
---|
[142] | 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 | */ |
---|
| 13 | class Logo { |
---|
| 14 | |
---|
| 15 | // hardcoded logo div, image is defined in stylesheet. (#logo background:"";) |
---|
| 16 | public function __construct() { |
---|
[151] | 17 | echo '<div id="logo"><a href="index.php">Research Tool</a>'; |
---|
| 18 | if (isset($_SESSION['username'])) { |
---|
[167] | 19 | echo '<a href="index.php" onClick="savePipeline(true);" style="font-size: 12pt;">Log out</a>'; |
---|
[151] | 20 | } |
---|
| 21 | echo '</div>'; |
---|
[142] | 22 | |
---|
| 23 | } |
---|
| 24 | |
---|
| 25 | |
---|
| 26 | } |
---|
| 27 | |
---|
| 28 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.