get_string('publishanonymous', 'choice'), CHOICE_PUBLISH_NAMES => get_string('publishnames', 'choice')); $CHOICE_SHOWRESULTS = array (CHOICE_SHOWRESULTS_NOT => get_string('publishnot', 'choice'), CHOICE_SHOWRESULTS_AFTER_ANSWER => get_string('publishafteranswer', 'choice'), CHOICE_SHOWRESULTS_AFTER_CLOSE => get_string('publishafterclose', 'choice'), CHOICE_SHOWRESULTS_ALWAYS => get_string('publishalways', 'choice')); $CHOICE_DISPLAY = array (CHOICE_DISPLAY_HORIZONTAL => get_string('displayhorizontal', 'choice'), CHOICE_DISPLAY_VERTICAL => get_string('displayvertical','choice')); /// Standard functions ///////////////////////////////////////////////////////// function choice_user_outline($course, $user, $mod, $choice) { if ($answer = get_record('choice_answers', 'choiceid', $choice->id, 'userid', $user->id)) { $result->info = "'".format_string(choice_get_option_text($choice, $answer->optionid))."'"; $result->time = $answer->timemodified; return $result; } return NULL; } function choice_user_complete($course, $user, $mod, $choice) { if ($answer = get_record('choice_answers', "choiceid", $choice->id, "userid", $user->id)) { $result->info = "'".format_string(choice_get_option_text($choice, $answer->optionid))."'"; $result->time = $answer->timemodified; echo get_string("answered", "choice").": $result->info. ".get_string("updated", '', userdate($result->time)); } else { print_string("notanswered", "choice"); } } function choice_add_instance($choice) { // Given an object containing all the necessary data, // (defined by the form in mod.html) this function // will create a new instance and return the id number // of the new instance. $choice->timemodified = time(); if (empty($choice->timerestrict)) { $choice->timeopen = 0; $choice->timeclose = 0; } //insert answers if ($choice->id = insert_record("choice", $choice)) { foreach ($choice->option as $key => $value) { $value = trim($value); if (isset($value) && $value <> '') { $option = new object(); $option->text = $value; $option->choiceid = $choice->id; if (isset($choice->limit[$key])) { $option->maxanswers = $choice->limit[$key]; } $option->timemodified = time(); insert_record("choice_options", $option); } } } return $choice->id; } function choice_update_instance($choice) { // Given an object containing all the necessary data, // (defined by the form in mod.html) this function // will update an existing instance with new data. $choice->id = $choice->instance; $choice->timemodified = time(); if (empty($choice->timerestrict)) { $choice->timeopen = 0; $choice->timeclose = 0; } //update, delete or insert answers foreach ($choice->option as $key => $value) { $value = trim($value); $option = new object(); $option->text = $value; $option->choiceid = $choice->id; if (isset($choice->limit[$key])) { $option->maxanswers = $choice->limit[$key]; } $option->timemodified = time(); if (isset($choice->optionid[$key]) && !empty($choice->optionid[$key])){//existing choice record $option->id=$choice->optionid[$key]; if (isset($value) && $value <> '') { update_record("choice_options", $option); } else { //empty old option - needs to be deleted. delete_records("choice_options", "id", $option->id); } } else { if (isset($value) && $value <> '') { insert_record("choice_options", $option); } } } return update_record('choice', $choice); } function choice_show_form($choice, $user, $cm) { //$cdisplay is an array of the display info for a choice $cdisplay[$optionid]->text - text name of option. // ->maxanswers -maxanswers for this option // ->full - whether this option is full or not. 0=not full, 1=full $cdisplay = array(); $aid = 0; foreach ($choice->option as $optionid => $text) { if (isset($text)) { //make sure there are no dud entries in the db with blank text values. $countanswers = (get_records("choice_answers", "optionid", $optionid)); $countans = 0; $context = get_context_instance(CONTEXT_MODULE, $cm->id); if (!empty($countanswers)) { foreach ($countanswers as $ca) { //only return enrolled users. if (has_capability('mod/choice:choose', $context)) { $countans = $countans+1; } } } if ($countanswers) { $countanswers = count($countanswers); } else { $countanswers = 0; } $maxans = $choice->maxanswers[$optionid]; $cdisplay[$aid]->optionid = $optionid; $cdisplay[$aid]->text = $text; $cdisplay[$aid]->maxanswers = $maxans; $cdisplay[$aid]->countanswers = $countans; if ($current = get_record('choice_answers', 'choiceid', $choice->id, 'userid', $user->id, 'optionid', $optionid)) { $cdisplay[$aid]->checked = ' checked="checked" '; } else { $cdisplay[$aid]->checked = ''; } if ($choice->limitanswers && ($countans >= $maxans) && (empty($cdisplay[$aid]->checked)) ) { $cdisplay[$aid]->disabled = ' disabled="disabled" '; } else { $cdisplay[$aid]->disabled = ''; } $aid++; } } switch ($choice->display) { case CHOICE_DISPLAY_HORIZONTAL: echo ""; foreach ($cdisplay as $cd) { echo ""; } echo ""; echo "
"; echo "optionid."\" alt=\"".strip_tags(format_text($cd->text))."\"". $cd->checked.$cd->disabled." />"; if (!empty($cd->disabled)) { echo format_text($cd->text."
".get_string('full', 'choice').""); } else { echo format_text($cd->text); } echo "
"; break; case CHOICE_DISPLAY_VERTICAL: $displayoptions->para = false; echo ""; foreach ($cdisplay as $cd) { echo ""; } else if ($choice->limitanswers && ($cd->countanswers >= $cd->maxanswers)) { //if limitanswers and answers exceeded, display "full" beside the choice. echo " ".get_string('full', 'choice').""; } echo ""; echo ""; } echo "
"; echo "optionid."\" alt=\"".strip_tags(format_text($cd->text))."\"". $cd->checked.$cd->disabled." />"; echo format_text($cd->text. ' ', FORMAT_MOODLE, $displayoptions); //display text for option. if ($choice->limitanswers && ($choice->showresults==CHOICE_SHOWRESULTS_ALWAYS) ){ //if limit is enabled, and show results always has been selected, display info beside each choice. echo ""; if (!empty($cd->disabled)) { echo get_string('full', 'choice'); } elseif(!empty($cd->checked)) { //currently do nothing - maybe some text could be added here to signfy that the choice has been 'selected' } elseif ($cd->maxanswers-$cd->countanswers==1) { echo ($cd->maxanswers - $cd->countanswers); echo " ".get_string('spaceleft', 'choice'); } else { echo ($cd->maxanswers - $cd->countanswers); echo " ".get_string('spacesleft', 'choice'); } echo "
"; break; } //show save choice button echo '
'; echo "id\" />"; if (!isguest()) { //don't show save button if the logged in user is the guest user. echo ""; } else { print_string('havetologin', 'choice'); } echo "
"; } function choice_user_submit_response($formanswer, $choice, $userid, $courseid, $cm) { $current = get_record('choice_answers', 'choiceid', $choice->id, 'userid', $userid); $context = get_context_instance(CONTEXT_MODULE, $cm->id); $countanswers = get_records("choice_answers", "optionid", $formanswer); if ($countanswers) { $countans = 0; foreach ($countanswers as $ca) { //only return enrolled users. if (has_capability('mod/choice:choose', $context)) { $countans = $countans+1; } } $countanswers = $countans; } else { $countanswers = 0; } $maxans = $choice->maxanswers[$formanswer]; if (!($choice->limitanswers && ($countanswers >= $maxans) )) { if ($current) { $newanswer = $current; $newanswer->optionid = $formanswer; $newanswer->timemodified = time(); if (! update_record("choice_answers", $newanswer)) { error("Could not update your choice because of a database error"); } add_to_log($courseid, "choice", "choose again", "view.php?id=$cm->id", $choice->id, $cm->id); } else { $newanswer = NULL; $newanswer->choiceid = $choice->id; $newanswer->userid = $userid; $newanswer->optionid = $formanswer; $newanswer->timemodified = time(); if (! insert_record("choice_answers", $newanswer)) { error("Could not save your choice"); } add_to_log($courseid, "choice", "choose", "view.php?id=$cm->id", $choice->id, $cm->id); } } else { if (!($current->optionid==$formanswer)) { //check to see if current choice already selected - if not display error error("this choice is full!"); } } } function choice_show_reportlink($choice, $courseid, $cmid) { $context = get_context_instance(CONTEXT_MODULE, $cmid); if ( $allanswers = get_records("choice_answers", "choiceid", $choice->id)) { $responsecount = 0; foreach ($allanswers as $aa) { if (has_capability('mod/choice:readresponses', $context)) { $responsecount++; } } } else { $responsecount = 0; } echo ''; } function choice_show_results($choice, $course, $cm, $forcepublish='') { global $CFG, $COLUMN_HEIGHT, $USER; $context = get_context_instance(CONTEXT_MODULE, $cm->id); print_heading(get_string("responses", "choice")); if (empty($forcepublish)) { //alow the publish setting to be overridden $forcepublish = $choice->publish; } /// Check to see if groups are being used in this choice if ($groupmode = groupmode($course, $cm)) { // Groups are being used $currentgroup = setup_and_print_groups($course, $groupmode, $_SERVER['PHP_SELF']."?id=$cm->id"); } else { $currentgroup = false; } if ($currentgroup) { $users = get_group_users($currentgroup, "u.firstname ASC", '', 'u.id, u.picture, u.firstname, u.lastname, u.idnumber'); } else { $users = get_users_by_capability($context, 'mod/choice:choose', 'u.id, u.picture, u.firstname, u.lastname, u.idnumber', 'u.firstname ASC'); } if (!$users) { print_heading(get_string("nousersyet")); } if ($allresponses = get_records("choice_answers", "choiceid", $choice->id)) { foreach ($allresponses as $aa) { $answers[$aa->userid] = $aa; } } else { $answers = array () ; } $timenow = time(); foreach ($choice->option as $optionid => $text) { $useranswer[$optionid] = array(); } if (!empty($users)) { foreach ($users as $user) { if (!empty($user->id) and !empty($answers[$user->id])) { $answer = $answers[$user->id]; $useranswer[(int)$answer->optionid][] = $user; } else { $useranswer[0][] = $user; } } } foreach ($choice->option as $optionid => $text) { if (!$choice->option[$optionid]) { unset($useranswer[$optionid]); // Throw away any data that doesn't apply } } ksort($useranswer); switch ($forcepublish) { case CHOICE_PUBLISH_NAMES: $tablewidth = (int) (100.0 / count($useranswer)); if (has_capability('mod/choice:readresponses', $context)) { echo '
'; echo '
'; echo '
'; echo ''; echo ''; } echo ""; echo ""; $count = 0; foreach ($useranswer as $optionid => $userlist) { if ($optionid) { echo ""; $count++; } echo ""; $count = 0; foreach ($useranswer as $optionid => $userlist) { if ($optionid) { echo ""; } echo ""; $count = 0; foreach ($useranswer as $optionid => $userlist) { if (!$optionid and !$choice->showunanswered) { continue; } echo ""; $count++; } echo ""; /// Print "Select all" etc. if (has_capability('mod/choice:readresponses', $context)) { echo ''; } echo "
"; } else if ($choice->showunanswered) { echo ""; } else { continue; } echo format_string(choice_get_option_text($choice, $optionid)); echo "
"; } else if ($choice->showunanswered) { echo ""; } else { continue; } // added empty row so that when the next iteration is empty, // we do not get
erro from w3c validator // MDL-7861 echo ""; foreach ($userlist as $user) { // this needs to be fixed // hide admin/editting teacher (users with editting privilages) // show users without? I could be wrong. if (!($optionid==0 && has_capability('mod/choice:readresponses', $context, $user->id))) { // make sure admins and hidden teachers are not shown in not answered yet column. echo ""; if (has_capability('mod/choice:readresponses', $context) && $optionid!=0) { echo ''; } echo ""; } } $count++; echo "
"; print_user_picture($user->id, $course->id, $user->picture); echo ""; echo "wwwroot/user/view.php?id=$user->id&course=$course->id\">"; echo fullname($user, has_capability('moodle/site:viewfullnames', $context)); echo ""; echo "
"; echo "
"; $countanswers = get_records("choice_answers", "optionid", $optionid); $countans = 0; if (!empty($countanswers)) { foreach ($countanswers as $ca) { //only return enrolled users. if (has_capability('mod/choice:choose', get_context_instance(CONTEXT_MODULE, $cm->id))) { $countans = $countans+1; } } } if ($choice->limitanswers && !$optionid==0) { echo get_string("taken", "choice").":"; echo $countans; echo "
"; echo get_string("limit", "choice").":"; $choice_option = get_record("choice_options", "id", $optionid); echo $choice_option->maxanswers; } echo "
'; echo ''.get_string('selectall', 'quiz').' / '; echo ''.get_string('selectnone', 'quiz').' '; echo '  '; $options = array('delete' => get_string('delete')); echo choose_from_menu($options, 'action', '', get_string('withselected', 'quiz'), 'if(this.selectedIndex > 0) submitFormById(\'attemptsform\');', '', true); echo ''; echo ''; echo '
"; if (has_capability('mod/choice:readresponses', $context)) { echo "
"; } break; case CHOICE_PUBLISH_ANONYMOUS: $tablewidth = (int) (100.0 / count($useranswer)); echo ""; echo ""; $count = 0; foreach ($useranswer as $optionid => $userlist) { if ($optionid) { echo ""; $count++; } echo ""; $maxcolumn = 0; foreach ($useranswer as $optionid => $userlist) { if (!$optionid and !$choice->showunanswered) { continue; } $column[$optionid] = 0; foreach ($userlist as $user) { if (!($optionid==0 && has_capability('mod/choice:readresponses', $context, $user->id))) { //make sure admins and hidden teachers are not shown in not answered yet column. $column[$optionid]++; } } if ($column[$optionid] > $maxcolumn) { $maxcolumn = $column[$optionid]; } } echo ""; $count = 0; foreach ($useranswer as $optionid => $userlist) { if (!$optionid and !$choice->showunanswered) { continue; } $height = 0; if ($maxcolumn) { $height = $COLUMN_HEIGHT * ((float)$column[$optionid] / (float)$maxcolumn); } echo ""; $count++; } echo ""; echo ""; $count = 0; foreach ($useranswer as $optionid => $userlist) { if (!$optionid and !$choice->showunanswered) { continue; } echo ""; $count++; } echo "
"; } else if ($choice->showunanswered) { echo ""; } else { continue; } echo format_string(choice_get_option_text($choice, $optionid)); echo "
"; echo "\"\""; echo "
"; if ($choice->limitanswers && !$optionid==0) { echo get_string("taken", "choice").":"; echo $column[$optionid]; echo "
"; echo get_string("limit", "choice").":"; $choice_option = get_record("choice_options", "id", $optionid); echo $choice_option->maxanswers; } else { echo $column[$optionid]; } echo "
"; break; } } function choice_delete_responses($attemptids) { if(!is_array($attemptids) || empty($attemptids)) { return false; } foreach($attemptids as $num => $attemptid) { if(empty($attemptid)) { unset($attemptids[$num]); } } foreach($attemptids as $attemptid) { if ($todelete = get_record('choice_answers', 'id', $attemptid)) { delete_records('choice_answers', 'id', $attemptid); } } return true; } function choice_delete_instance($id) { // Given an ID of an instance of this module, // this function will permanently delete the instance // and any data that depends on it. if (! $choice = get_record("choice", "id", "$id")) { return false; } $result = true; if (! delete_records("choice_answers", "choiceid", "$choice->id")) { $result = false; } if (! delete_records("choice_options", "choiceid", "$choice->id")) { $result = false; } if (! delete_records("choice", "id", "$choice->id")) { $result = false; } return $result; } function choice_get_participants($choiceid) { //Returns the users with data in one choice //(users with records in choice_responses, students) global $CFG; //Get students $students = get_records_sql("SELECT DISTINCT u.id, u.id FROM {$CFG->prefix}user u, {$CFG->prefix}choice_answers a WHERE a.choiceid = '$choiceid' and u.id = a.userid"); //Return students array (it contains an array of unique users) return ($students); } function choice_get_option_text($choice, $id) { // Returns text string which is the answer that matches the id if ($result = get_record("choice_options", "id", $id)) { return $result->text; } else { return get_string("notanswered", "choice"); } } function choice_get_choice($choiceid) { // Gets a full choice record if ($choice = get_record("choice", "id", $choiceid)) { if ($options = get_records("choice_options", "choiceid", $choiceid, "id")) { foreach ($options as $option) { $choice->option[$option->id] = $option->text; $choice->maxanswers[$option->id] = $option->maxanswers; } return $choice; } } return false; } function choice_get_view_actions() { return array('view','view all','report'); } function choice_get_post_actions() { return array('choose','choose again'); } ?>