Note: You are currently viewing documentation for Moodle 2.6. Up-to-date documentation for the latest stable version of Moodle may be available here: Face-to-face module.

Face-to-face module: Difference between revisions

From MoodleDocs
(First draft)
 
m (category, formatting)
Line 5: Line 5:
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.
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.


= Creating a new session =
== Creating a new session ==


Once you have added the Face-to-face activity to a course, you can add new sessions (as a teacher in that course or an administrator) by:
Once you have added the Face-to-face activity to a course, you can add new sessions (as a teacher in that course or an administrator) by:
Line 12: Line 12:
* clicking on the "add session" link at the bottom of the table
* clicking on the "add session" link at the bottom of the table


= Signing-up for a session =
== Signing-up for a session ==


Students can sign-up for one of the sessions by clicking on the Face-to-face link in the course page (which brings them to the "upcoming sessions" page) and then clicking on the signup link next to the session they want.
Students can sign-up for one of the sessions by clicking on the Face-to-face link in the course page (which brings them to the "upcoming sessions" page) and then clicking on the signup link next to the session they want.


= Integration with the course page =
== Integration with the course page ==


To display the session dates directly on the course page, add the following
To display the session dates directly on the course page, add the following
Line 35: Line 35:
                       //Accessibility: for files get description via icon.
                       //Accessibility: for files get description via icon.


= See also =
== See also ==


* [http://moodle.org/mod/data/view.php?d=13&rid=995 Download]
* [http://moodle.org/mod/data/view.php?d=13&rid=995 Download]
* [http://moodle.org/mod/forum/view.php?id=7136 Forum]: get help and read annoucements
* [http://moodle.org/mod/forum/view.php?id=7136 Forum]: get help and read annoucements
* [http://tracker.moodle.org/secure/IssueNavigator.jspa?reset=true&&pid=10033&component=10250&sorter/field=issuekey&sorter/order=DESC Bug tracker]
* [http://tracker.moodle.org/secure/IssueNavigator.jspa?reset=true&&pid=10033&component=10250&sorter/field=issuekey&sorter/order=DESC Bug tracker]
[[Category:Contributed code]]

Revision as of 14:37, 20 February 2008

Face-to-face activities are used to keep track of in-person 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.

Creating a new session

Once you have added the Face-to-face activity to a course, you can add new sessions (as a teacher in that course or an administrator) by:

  • clicking on the Face-to-face activity to get to the page of "upcoming sessions"
  • clicking on the "add session" link at the bottom of the table

Signing-up for a session

Students can sign-up for one of the sessions by clicking on the Face-to-face link in the course page (which brings them to the "upcoming sessions" page) and then clicking on the signup link next to the session they want.

Integration with the course page

To display the session dates directly on the course page, add the following code to the print_section() function in course/lib.php:

--- /cvs/moodle18/course/lib.php 2007-10-05 20:19:29.000000000 +1300
+++ course/lib.php  2007-11-06 21:14:08.000000000 +1300
@@ -1382,6 +1382,10 @@
                         echo "";
                     }

+                } elseif ($mod->modname == 'facetoface') {
+                    include_once($CFG->dirroot.'/mod/facetoface/lib.php');
+                    echo facetoface_print_coursemodule_info($mod);
+
                 } else { // Normal activity

                     //Accessibility: for files get description via icon.

See also