From: stronk7 <stronk7>
Date: Sun, 7 Sep 2003 22:01:47 +0000 (+0000)
Subject: Included resource_get_participants() function.
X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=84caf038dee5cad452182bccf9fc461c7e732856;p=moodle.git

Included resource_get_participants() function.
---

diff --git a/mod/resource/lib.php b/mod/resource/lib.php
index f86f332e4c..4c781866ce 100644
--- a/mod/resource/lib.php
+++ b/mod/resource/lib.php
@@ -126,5 +126,11 @@ function resource_user_complete($course, $user, $mod, $resource) {
     }
 }
 
+function resource_get_participants($resourceid) {
+//Returns the users with data in one resource
+//(NONE, byt must exists on EVERY mod !!)
+
+    return false;
+}
 
 ?>