Change Session display

Change Session display

by Scott Karren -
Number of replies: 1
Francois

I would like to change the way that sessions are displayed within a course. Something like the table below. I have found the function facetoface_print_coursemodule_info that seems to contain the code but I am not sure how to proceed. Any pointers you can give me?

Class Date
Start/End Time
Location

January 31, 2009
8:00 AM - 1:00 PM
Classroom A
Signup
February 14, 2009
8:00 AM - 1:00 PM Classroom B
Signup


Thanks for any help.

Scott Karren
Average of ratings: -
In reply to Scott Karren

Re: Change Session display

by Scott Karren -
Well, I didn't get things to look exactly like the table above but I was able to get the sessions to display in a single column descending order.

In facetoface/lib.php within the function facetoface_print_coursemodule_info on or around lines 1832 and 1841 I changed if ($++ % 2 == 0) to if ($++ % 1 == 0) and this worked. Just thought I would let everyone know.

Scott Karren