Last change
on this file since 99 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
|
Rev | Line | |
---|
[59] | 1 | <?php |
---|
| 2 | |
---|
| 3 | /** |
---|
| 4 | * Description of Menu |
---|
| 5 | * |
---|
| 6 | * @author fpvanagthoven |
---|
| 7 | */ |
---|
| 8 | class 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 | ?> |
---|
[60] | 20 | <legend><h2><?php echo $this->title; ?></h2></legend> |
---|
[59] | 21 | <?php |
---|
| 22 | } |
---|
| 23 | |
---|
| 24 | } |
---|
| 25 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.