Ignore:
Timestamp:
03/09/12 09:49:26 (13 years ago)
Author:
jkraaijeveld
Message:
 
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  
    152152                                predicates:for_survey ?for_survey ;
    153153                                predicates:by_respondent ?by_respondent ;
    154                                 predicates:datetime ?datetime ;
     154                                predicates:creationdate ?datetime ;
    155155                                ' . ResearchToolObject::createArguments($arguments) . '
    156156                        }';
  • Dev/branches/jos-branch/server/classes/models/ResearchToolObject.php

    r298 r308  
    9292                                case "has_surveyinstance" : foreach($arguments[$key] as $instance) { $addition = $addition . "predicates:has_surveyinstance <" . SURVEYINSTANCE . '/' . $instance . ">\n"; } break;
    9393                                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;
    9495                        }
    9596                        $argumentString = $argumentString . $addition;
  • Dev/branches/jos-branch/server/classes/models/Respondent.php

    r285 r308  
    8383         * Gets the array of Respondent objects belonging to arguments supplied.
    8484         * @param type $arguments : An array containing zero or more of the following keys:
    85                                                                 'uid', 'name', 'password'
     85                                                                'uid', 'name', 'passwordHash', 'passwordSalt'
    8686         */
    8787    public static function get($arguments) {
  • Dev/branches/jos-branch/server/classes/models/User.php

    r285 r308  
    7979         * Gets the array of User objects belonging to arguments supplied.
    8080         * @param type $arguments : An array containing zero or more of the following keys:
    81          *                                                      'uid', 'email', 'password'
     81         *                                                      'uid', 'email', 'passwordHash', 'passwordSalt'
    8282         */
    8383        public static function get($arguments)
Note: See TracChangeset for help on using the changeset viewer.