Changeset 59
- Timestamp:
- 07/27/11 18:57:54 (14 years ago)
- Location:
- Dev/trunk
- Files:
-
- 8 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/ApplicationMenu.php
r58 r59 6 6 * @author fpvanagthoven 7 7 */ 8 class ApplicationMenu {8 class ApplicationMenu extends Menu { 9 9 10 10 public function __construct() { 11 ?> <div id="menu2" class="menu"> <?php 11 12 ?><fieldset class="menu"><?php 13 parent::__construct('Application'); 12 14 ?> <div class="menuButtons"> <?php 13 15 ApplicationMenu::createApplicationButton(); … … 15 17 ?> </div> <?php 16 18 ApplicationMenu::loadApplicationList(null); 17 ?> </div><?php19 ?></fieldset><?php 18 20 } 19 21 -
Dev/trunk/classes/SessionMenu.php
r58 r59 13 13 SessionMenu::createSessionButton(); 14 14 SessionMenu::loadSessionButton(); 15 SessionMenu::startSessionButton(); 15 16 ?> </div> <?php 16 17 SessionMenu::loadSessionList(null); … … 38 39 } 39 40 41 public static function startSessionButton() { 42 ?> 43 <form action="session.php" method="post"> 44 <input type="button" onclick="startSession()" value="Start session" class="surveyButton bigSurveyButton" /> 45 </form> 46 <?php 47 } 48 40 49 public static function loadSessionList($sessions) { 41 50 ?> -
Dev/trunk/classes/SurveyCreationTool.php
r54 r59 370 370 else 371 371 { 372 input.style.border = '1px solid # abadb3';372 input.style.border = '1px solid #888;'; 373 373 input.checkPassed = null; 374 374 } -
Dev/trunk/classes/SurveyMenu.php
r58 r59 17 17 SurveyMenu::newSurveyButton(); 18 18 SurveyMenu::loadSurveyButton(); 19 SurveyMenu::deleteSurveyButton(); 19 20 ?> </div> <?php 20 21 SurveyMenu::loadSurveyList($surveys); … … 34 35 } 35 36 36 /**37 *38 * @param Survey $surveys An array of surveys39 */40 37 public static function loadSurveyButton() { 41 38 ?> … … 46 43 } 47 44 45 public static function deleteSurveyButton() { 46 ?> 47 <form action="" method="post"> 48 <input type="button" onclick="delSurvey()" value="Delete survey" class="surveyButton bigSurveyButton" /> 49 </form> 50 <?php 51 } 52 53 /** 54 * 55 * @param Survey $surveys An array of surveys 56 */ 48 57 public static function loadSurveyList($surveys) { 49 58 ?> … … 56 65 </select> 57 66 <?php 58 59 67 } 60 68 -
Dev/trunk/classes/SurveyTool.php
r55 r59 147 147 private function submitSurvey() { 148 148 ?> 149 <input type="submit" value="Submit survey!" class="topMargin surveyButton bigSurveyButton"/>149 <input type="submit" value="Submit survey!" id="submitSurvey" class="topMargin surveyButton bigSurveyButton"/> 150 150 <?php 151 151 } -
Dev/trunk/index.php
r58 r59 22 22 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 23 23 <title>Facilitator</title> 24 < link rel="stylesheet" type="text/css" href="css/style.css" />24 <?php new StyleSheet(); ?> 25 25 <script type="text/javascript" src="js/menu.js"></script> 26 26 </head> -
Dev/trunk/mainmenu.php
r58 r59 40 40 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 41 41 <title>Facilitator</title> 42 < link rel="stylesheet" type="text/css" href="css/style.css" />42 <?php new StyleSheet(); ?> 43 43 <script type="text/javascript" src="js/menu.js"></script> 44 44 </head> -
Dev/trunk/survey.php
r58 r59 14 14 $savedSurvey = Survey::getSurvey($info); 15 15 16 var_dump($_POST);16 // var_dump($_POST); 17 17 } 18 18 else … … 26 26 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 27 27 <title>Survey</title> 28 < link rel="stylesheet" type="text/css" href="css/style.css" />28 <?php new StyleSheet(); ?> 29 29 <script type="text/javascript" src="js/menu.js"></script> 30 30 </head> -
Dev/trunk/surveycreation.php
r58 r59 42 42 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 43 43 <title>Survey Creation</title> 44 < link rel="stylesheet" type="text/css" href="css/style.css" />44 <?php new StyleSheet(); ?> 45 45 </head> 46 46 <body>
Note: See TracChangeset
for help on using the changeset viewer.