- Timestamp:
- 08/31/11 18:28:26 (14 years ago)
- Location:
- Dev/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/applicationcreation.php
r92 r96 9 9 $savedApplication = null; 10 10 11 if(isset($_POST['applicationUID']) && $_POST['applicationUID'] != "") 11 if(isset($_POST['applicationUID']) && $_POST['applicationUID'] != "") //either from same page or from menu 12 12 { 13 13 $applicationUID = $_POST['applicationUID']; 14 14 $applicationDBI = new ApplicationDatabaseInterface($applicationUID); 15 16 if (isset($_POST['applicationDescription']) && isset($_POST['applicationTitle'])) // from same page 17 { 18 $applicationDBI->setApplicationInfo($_POST); 19 } 20 15 21 $info = $applicationDBI->getApplicationInfo($applicationUID); 16 22 $savedApplication = Application::getApplication($info); -
Dev/trunk/classes/DashboardTool.php
r75 r96 9 9 { 10 10 private $surveys; 11 private $gamedata; 11 12 12 public function __construct($surveys )13 public function __construct($surveys, $gamedata = null) 13 14 { 14 15 $this->surveys = $surveys; 16 $this->gamedata = $gamedata; 15 17 16 18 $this->init(); -
Dev/trunk/dashboard.php
r75 r96 41 41 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 42 42 <head> 43 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >43 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 44 44 <title></title> 45 45 <?php new StyleSheet(); ?> -
Dev/trunk/doc/TODO
r95 r96 22 22 Dashboard 23 23 Dashboard Menu 24 DashboardCreationTool24 **DashboardCreationTool 25 25 Dashboard kunnen selecteren bij Session 26 26 -
Dev/trunk/sessioncreation.php
r91 r96 9 9 $sessionID = $_POST['UID']; 10 10 $sessionDBI = new SessionCreationDatabaseInterface($sessionID); 11 $info = $sessionDBI->getSurveyInfo(); 12 13 $savedSurvey = Survey::getSurvey($info); 11 $info = $sessionDBI->getSessionInfo(); 14 12 } 15 13 … … 24 22 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 25 23 <head> 26 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >24 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 27 25 <title>Session Creation</title> 28 26 <?php new StyleSheet(); ?>
Note: See TracChangeset
for help on using the changeset viewer.