Last change
on this file since 105 was
102,
checked in by fpvanagthoven, 14 years ago
|
Begin on questioncreation.php
|
File size:
690 bytes
|
Line | |
---|
1 | <?php |
---|
2 | /* |
---|
3 | * To change this template, choose Tools | Templates |
---|
4 | * and open the template in the editor. |
---|
5 | */ |
---|
6 | |
---|
7 | /** |
---|
8 | * Description of QuestionMenu |
---|
9 | * |
---|
10 | * @author fpvanagthoven |
---|
11 | */ |
---|
12 | class QuestionMenu extends Menu { |
---|
13 | |
---|
14 | public function __construct() { |
---|
15 | ?> <fieldset class="menu"> <?php |
---|
16 | parent::__construct('Questions'); |
---|
17 | QuestionMenu::accessDatabaseButton(); |
---|
18 | ?></fieldset> <?php |
---|
19 | } |
---|
20 | |
---|
21 | public static function accessDatabaseButton() { |
---|
22 | ?> |
---|
23 | <form id="accessDatabase" action="questioncreation.php" method="post"> |
---|
24 | <input type="submit" value="Access Database" class="surveyButton bigSurveyButton" /> |
---|
25 | </form> |
---|
26 | <?php |
---|
27 | } |
---|
28 | |
---|
29 | } |
---|
30 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.