Changeset 92
- Timestamp:
- 08/31/11 13:58:22 (14 years ago)
- Location:
- Dev/trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/applicationcreation.php
r89 r92 13 13 $applicationUID = $_POST['applicationUID']; 14 14 $applicationDBI = new ApplicationDatabaseInterface($applicationUID); 15 16 15 $info = $applicationDBI->getApplicationInfo($applicationUID); 17 var_dump($info);18 16 $savedApplication = Application::getApplication($info); 19 17 } 20 18 else if(isset($_POST['applicationTitle'])) //save for first time 21 19 { 22 $title = $_POST['applicationTitle'];23 $description = $_POST['applicationDescription'];24 $application = new Application($title, $description);25 26 20 $applicationDBI = new ApplicationDatabaseInterface($_POST['applicationUID']); 27 21 $applicationDBI->setApplicationInfo($_POST); … … 29 23 $info = $applicationDBI->getApplicationInfo($applicationID); 30 24 $savedApplication = Application::getApplication($info); 31 32 33 25 } 26 27 var_dump($savedApplication); 34 28 ?> 35 29 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" -
Dev/trunk/css/awesome.css
r75 r92 482 482 margin-left: 2em; 483 483 } 484 485 /* ################################################################## 486 ===================== STYLESHEET OF GLORY ======================== */ 487 .xdebug-var-dump { 488 color:white; 489 } -
Dev/trunk/doc/TODO
r91 r92 1 Wat werkt er al: 1 TODO - Nog niet af 2 2 3 Surveys aanmaken: New + Load / Edit 4 Applications aanmaken (excl. style): New 3 Menu 4 Session Menu 5 5 6 Session 7 New Session 8 Save Session 9 Load / Edit Session 10 Session starten -> inlogscherm -> session start * 11 **Application inladen in session 6 12 7 Wat is nog niet af: 13 Application 14 Edit Application 15 Application Style 8 16 9 17 Survey question creation … … 13 21 Question category 14 22 15 Application Load / Edit 16 Application inladen in session 17 Session opslaan 18 DashboardCreationTool 19 Dashboard kunnen selecteren bij session 20 Session opslaan 21 Session laden / edit 22 Session starten -> inlogscherm -> session start * 23 Application style 23 Dashboard 24 Dashboard Menu 25 DashboardCreationTool 26 Dashboard kunnen selecteren bij Session 27 28 Survey voor users 29 Bounds checking -> js erna van 30 Default question description / leeg -> Niet displayen 31 32 BUGS - Hoge prioriteit 33 34 BUGS - Lage prioriteit 35 Borderkleur inputchecking int verandert niet terug 24 36 25 37 26 Bug:27 Borderkleur inputchecking int verandert niet terug
Note: See TracChangeset
for help on using the changeset viewer.