[Hw4mdl-svn] SF.net SVN: hw4mdl: [12] trunk/moodle/mod/liveclassroom
Brought to you by:
jhlinder,
trollinger
From: <hu...@us...> - 2006-05-05 07:59:56
|
Revision: 12 Author: hugues Date: 2006-05-05 00:59:51 -0700 (Fri, 05 May 2006) ViewCVS: http://svn.sourceforge.net/hw4mdl/?rev=12&view=rev Log Message: ----------- Some more fundtion documentation Modified Paths: -------------- trunk/moodle/mod/liveclassroom/api.php trunk/moodle/mod/liveclassroom/lib.php Modified: trunk/moodle/mod/liveclassroom/api.php =================================================================== --- trunk/moodle/mod/liveclassroom/api.php 2006-05-04 20:20:58 UTC (rev 11) +++ trunk/moodle/mod/liveclassroom/api.php 2006-05-05 07:59:51 UTC (rev 12) @@ -364,7 +364,4 @@ } return true; } - - - ?> Modified: trunk/moodle/mod/liveclassroom/lib.php =================================================================== --- trunk/moodle/mod/liveclassroom/lib.php 2006-05-04 20:20:58 UTC (rev 11) +++ trunk/moodle/mod/liveclassroom/lib.php 2006-05-05 07:59:51 UTC (rev 12) @@ -240,7 +240,34 @@ +/** + * Return the id of liveclassroom activities in this course + * @param string the courseid + * @return array the activity ids of classrooms links available for this course + */ + function liveclassroom_ids($courseid) { + return array (); + } +/** + * Counts the number of rooms available for this course + * @param string the courseid + * @return string the numlber of classrooms available for this course + */ + function liveclassroom_count_rooms($courseid) { + return '0'; + } +/** + * Counts the number of archives available for this course + * @param string the courseid + * @return string the number of archives available for this course + */ + function liveclassroom_count_archives($courseid) { + return '0'; + } + + + ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |