1.8
* @version MOODLE 2.0
* @date 06/05/2009
*
* Prints a form for user preferences
*/
if (!defined('MOODLE_INTERNAL')) {
die('Direct access to this script is forbidden.'); /// It must be included from view.php in mod/tracker
}
echo "
";
print_heading(get_string('mypreferences', 'tracker'));
print_simple_box_start('center', '80%', '', '', 'generalbox', 'bugreport');
tracker_loadpreferences($tracker->id, $USER->id);
$yesnooptions = array('0' => get_string('no'), '1' => get_string('yes'));
?>