Facetoface
Premium Certified Partner
Maintained by
Dan Marsden, Catalyst IT
Face-to-face activities are used to keep track of in-person (e.g. classroom) trainings which require advance booking.
Each activity is offered in one or more identical sessions. These sessions can be given over multiple days.
Reminder messages are sent to users and their managers a few days before the session is scheduled to start. Confirmation messages are sent when users sign-up for a session or cancel.
This module may be of interest to administrators looking for a way to provide event management support for blended learning environments.
Comments
Comments are no longer open for new posts. Existing comments remain available to read.
Thanks for reporting that. I've had a quick test with the module in 2.6 and it seems to work okay as well but will possibly suffer from the same issue. I'll try and fix this as soon as possible.
Apologies for the delay so far though, Christmas and New Year rush and all
Thanks,
Stacey
Had to change lines 3230 - 3231 from
$DB->delete_records('event', array('name' => $shortname, 'userid' => $userid,
'instance' => $session->facetoface, 'eventtype' => 'facetofacesession'));
to
$select = "name = '{$shortname}'
AND userid = {$userid}
AND instance = {$session->facetoface}
AND eventtype = 'facetofacesession'";
$DB->delete_records_select('event', $select);