source: Dev/trunk/classes/Menu.php @ 94

Last change on this file since 94 was 60, checked in by fpvanagthoven, 14 years ago

You now get redirected to mainmenu, when you're already logged in and go to index.php

File size: 343 bytes
Line 
1<?php
2
3/**
4 * Description of Menu
5 *
6 * @author fpvanagthoven
7 */
8class Menu {
9
10    private $title;
11
12    public function __construct($title) {
13        $this->title = $title;
14
15        $this->menuTitle();
16    }
17
18    public function menuTitle() {
19        ?>
20        <legend><h2><?php echo $this->title; ?></h2></legend>
21        <?php
22    }
23
24}
25?>
Note: See TracBrowser for help on using the repository browser.