Changeset 151 for Dev/trunk/classes/Logo.php
- Timestamp:
- 11/08/11 17:02:55 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/Logo.php
r142 r151 15 15 // hardcoded logo div, image is defined in stylesheet. (#logo background:"";) 16 16 public function __construct() { 17 echo ' 18 <div id="logo"><a href="index.php">Research Tool</a></div> 19 '; 17 echo '<div id="logo"><a href="index.php">Research Tool</a>'; 18 if (isset($_SESSION['username'])) { 19 echo '<a href="logout.php" style="font-size: 12pt;">Log out</a>'; 20 } 21 echo '</div>'; 20 22 21 23 }
Note: See TracChangeset
for help on using the changeset viewer.