Changeset 51 for Dev/trunk/classes
- Timestamp:
- 07/25/11 20:19:23 (14 years ago)
- Location:
- Dev/trunk/classes
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/ApplicationDatabaseInterface.php
r45 r51 32 32 $aStyle = $application['applicationStyle']; 33 33 34 $this->applicationRDFWriter->setApplicationInfo($aTitle, $aDescription, $aStyle) 34 $this->applicationRDFWriter->setApplicationInfo($aTitle, $aDescription, $aStyle); 35 35 36 36 $this->applicationRDFWriter->saveApplications(); -
Dev/trunk/classes/SurveyAnswerRDFReader.php
r45 r51 4 4 { 5 5 protected $tempModel; 6 protected $answerPath 6 protected $answerPath; 7 7 8 8 public function __construct($surveyUID) … … 10 10 parent::__construct($surveyUID); 11 11 12 / Create empty MemModel12 // Create empty MemModel 13 13 $factory = new ModelFactory(); 14 14 $this->tempModel = $factory->getDefaultModel(); -
Dev/trunk/classes/SurveyAnswerRDFWriter.php
r45 r51 4 4 { 5 5 protected $userUID; 6 protected $answerPath 6 protected $answerPath; 7 7 8 8 public function __construct($surveyUID,$userUID) -
Dev/trunk/classes/master.php
r10 r51 14 14 require 'classes/' . $class_name . '.php'; 15 15 } 16 17 18 // Redirects user to $url 19 function redirect($url = null) 20 { 21 if (is_null($url)) 22 $url = $_SERVER['PHP_SELF']; 23 24 header("Location: $url"); 25 exit(); 26 }
Note: See TracChangeset
for help on using the changeset viewer.