Skip to content

Commit

Permalink
Merge branch 'MDL-31902-master' of git://github.com/ankitagarwal/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed May 14, 2012
2 parents 85c85b8 + 3afe75a commit 41ea0d3
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 135 deletions.
15 changes: 0 additions & 15 deletions mod/lti/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -270,21 +270,6 @@ function lti_grades($basicltiid) {
return null;
}

/**
* Must return an array of user records (all data) who are participants
* for a given instance of basiclti. Must include every user involved
* in the instance, independient of his role (student, teacher, admin...)
* See other modules as example.
*
* @param int $basicltiid ID of an instance of this module
* @return mixed boolean/array of students
*
* @TODO: implement this moodle function
**/
function lti_get_participants($basicltiid) {
return false;
}

/**
* This function returns if a scale is being used by one basiclti
* it it has support for grading and scales. Commented code should be
Expand Down
17 changes: 0 additions & 17 deletions mod/quiz/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -745,23 +745,6 @@ function quiz_grade_item_delete($quiz) {
null, array('deleted' => 1));
}

/**
* Returns an array of users who have data in a given quiz
*
* @todo: deprecated - to be deleted in 2.2
*
* @param int $quizid the quiz id.
* @return array of userids.
*/
function quiz_get_participants($quizid) {
global $CFG, $DB;

return $DB->get_records_sql('
SELECT DISTINCT userid, userid
JOIN {quiz_attempts} qa
WHERE a.quiz = ?', array($quizid));
}

/**
* This standard function will check all instances of this module
* and make sure there are up-to-date events created for each of them.
Expand Down
33 changes: 0 additions & 33 deletions mod/survey/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -267,39 +267,6 @@ function survey_print_recent_activity($course, $viewfullnames, $timestart) {
return true;
}

/**
* Returns the users with data in one survey
* (users with records in survey_analysis and survey_answers, students)
*
* @todo: deprecated - to be deleted in 2.2
*
* @param int $surveyid
* @return array
*/
function survey_get_participants($surveyid) {
global $DB;

//Get students from survey_analysis
$st_analysis = $DB->get_records_sql("SELECT DISTINCT u.id, u.id
FROM {user} u, {survey_analysis} a
WHERE a.survey = ? AND
u.id = a.userid", array($surveyid));
//Get students from survey_answers
$st_answers = $DB->get_records_sql("SELECT DISTINCT u.id, u.id
FROM {user} u, {survey_answers} a
WHERE a.survey = ? AND
u.id = a.userid", array($surveyid));

//Add st_answers to st_analysis
if ($st_answers) {
foreach ($st_answers as $st_answer) {
$st_analysis[$st_answer->id] = $st_answer;
}
}
//Return st_analysis array (it contains an array of unique users)
return ($st_analysis);
}

// SQL FUNCTIONS ////////////////////////////////////////////////////////

/**
Expand Down
12 changes: 0 additions & 12 deletions mod/url/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -235,18 +235,6 @@ function url_user_complete($course, $user, $mod, $url) {
}
}

/**
* Returns the users with data in one url
*
* @todo: deprecated - to be deleted in 2.2
*
* @param int $urlid
* @return bool false
*/
function url_get_participants($urlid) {
return false;
}

/**
* Given a course_module object, this function returns any
* "extra" information that may be needed when printing
Expand Down
15 changes: 0 additions & 15 deletions mod/wiki/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -376,21 +376,6 @@ function wiki_grades($wikiid) {
return null;
}

/**
* Must return an array of user records (all data) who are participants
* for a given instance of wiki. Must include every user involved
* in the instance, independient of his role (student, teacher, admin...)
* See other modules as example.
*
* @todo: deprecated - to be deleted in 2.2
*
* @param int $wikiid ID of an instance of this module
* @return mixed boolean/array of students
**/
function wiki_get_participants($wikiid) {
return false;
}

/**
* This function returns if a scale is being used by one wiki
* it it has support for grading and scales. Commented code should be
Expand Down
43 changes: 0 additions & 43 deletions mod/workshop/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -949,49 +949,6 @@ function workshop_cron() {
return true;
}

/**
* Returns an array of user ids who are participanting in this workshop
*
* Participants are either submission authors or reviewers or both.
* Authors of the example submissions and their referential assessments
* are not returned as the example submission is considered non-user
* data for the purpose of workshop backup.
*
* @todo: deprecated - to be deleted in 2.2
*
* @param int $workshopid ID of an instance of this module
* @return array of user ids, empty if there are no participants
*/
function workshop_get_participants($workshopid) {
global $DB;

$sql = "SELECT u.id
FROM {workshop} w
JOIN {workshop_submissions} s ON s.workshopid = w.id
JOIN {user} u ON s.authorid = u.id
WHERE w.id = ? AND s.example = 0
UNION
SELECT u.id
FROM {workshop} w
JOIN {workshop_submissions} s ON s.workshopid = w.id
JOIN {workshop_assessments} a ON a.submissionid = s.id
JOIN {user} u ON a.reviewerid = u.id
WHERE w.id = ? AND (s.example = 0 OR a.weight = 0)";

$users = array();
$rs = $DB->get_recordset_sql($sql, array($workshopid, $workshopid));
foreach ($rs as $user) {
if (empty($users[$user->id])) {
$users[$user->id] = $user;
}
}
$rs->close();

return $users;
}

/**
* Is a given scale used by the instance of workshop?
*
Expand Down

0 comments on commit 41ea0d3

Please sign in to comment.