Changeset 308 for Dev/branches/jos-branch
- Timestamp:
- 03/09/12 09:49:26 (13 years ago)
- Location:
- Dev/branches/jos-branch/server/classes/models
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/branches/jos-branch/server/classes/models/AnswerSet.php
r298 r308 152 152 predicates:for_survey ?for_survey ; 153 153 predicates:by_respondent ?by_respondent ; 154 predicates: datetime ?datetime ;154 predicates:creationdate ?datetime ; 155 155 ' . ResearchToolObject::createArguments($arguments) . ' 156 156 }'; -
Dev/branches/jos-branch/server/classes/models/ResearchToolObject.php
r298 r308 92 92 case "has_surveyinstance" : foreach($arguments[$key] as $instance) { $addition = $addition . "predicates:has_surveyinstance <" . SURVEYINSTANCE . '/' . $instance . ">\n"; } break; 93 93 case "preset_answers" : foreach($arguments[$key] as $instance) { $addition = $addition . "predicates:preset_answer <" . ANSWER . '/' . $instance . ">\n"; } break; 94 case "of_survey": $addition = "predicates:of_survey <" . SURVEY . '/' . $arguments[$key] . ">\n"; break; 94 95 } 95 96 $argumentString = $argumentString . $addition; -
Dev/branches/jos-branch/server/classes/models/Respondent.php
r285 r308 83 83 * Gets the array of Respondent objects belonging to arguments supplied. 84 84 * @param type $arguments : An array containing zero or more of the following keys: 85 'uid', 'name', 'password '85 'uid', 'name', 'passwordHash', 'passwordSalt' 86 86 */ 87 87 public static function get($arguments) { -
Dev/branches/jos-branch/server/classes/models/User.php
r285 r308 79 79 * Gets the array of User objects belonging to arguments supplied. 80 80 * @param type $arguments : An array containing zero or more of the following keys: 81 * 'uid', 'email', 'password '81 * 'uid', 'email', 'passwordHash', 'passwordSalt' 82 82 */ 83 83 public static function get($arguments)
Note: See TracChangeset
for help on using the changeset viewer.