|
Moodle
2.2.1
http://www.collinsharper.com
|
Go to the source code of this file.
Namespaces | |
| namespace | feedback |
Variables | |
| $id = required_param('id', PARAM_INT) | |
| $subject = optional_param('subject', '', PARAM_CLEANHTML) | |
| $message = optional_param('message', '', PARAM_CLEANHTML) | |
| $format = optional_param('format', FORMAT_MOODLE, PARAM_INT) | |
| $messageuser = optional_param('messageuser', false, PARAM_INT) | |
| $action = optional_param('action', '', PARAM_ALPHA) | |
| $perpage = optional_param('perpage', FEEDBACK_DEFAULT_PAGE_COUNT, PARAM_INT) | |
| $showall = optional_param('showall', false, PARAM_INT) | |
| $current_tab = 'nonrespondents' | |
| if(!$cm=get_coursemodule_from_id('feedback', $id)) if(!$course=$DB-> get_record("course", array("id"=> $cm->course))) if(!$feedback=$DB-> get_record("feedback", array("id"=> $cm->instance))) if($feedback-> anonymous!=FEEDBACK_ANONYMOUS_NO OR $feedback->course==SITEID) | $url = new moodle_url('/mod/feedback/show_nonrespondents.php', array('id'=>$cm->id)) |
| if($action== 'sendmessage'AND has_capability('moodle/course:bulkmessaging', $coursecontext)) | $strfeedbacks = get_string("modulenameplural", "feedback") |
| Print the page header. | |
| $strfeedback = get_string("modulename", "feedback") | |
| $mygroupid = groups_get_activity_group($cm) | |
| Print the main part of the page //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////. | |
| $baseurl = new moodle_url('/mod/feedback/show_nonrespondents.php') | |
| $tablecolumns = array('userpic', 'fullname', 'status') | |
| $tableheaders = array(get_string('userpic'), get_string('fullnameuser'), get_string('status')) | |
| if(has_capability('moodle/course:bulkmessaging', $coursecontext)) | $table = new flexible_table('feedback-shownonrespondents-'.$course->id) |
| $action = optional_param('action', '', PARAM_ALPHA) |
Definition at line 37 of file show_nonrespondents.php.
| $baseurl = new moodle_url('/mod/feedback/show_nonrespondents.php') |
Definition at line 146 of file show_nonrespondents.php.
| $current_tab = 'nonrespondents' |
Definition at line 41 of file show_nonrespondents.php.
| $format = optional_param('format', FORMAT_MOODLE, PARAM_INT) |
Definition at line 35 of file show_nonrespondents.php.
| $id = required_param('id', PARAM_INT) |
Definition at line 32 of file show_nonrespondents.php.
| $message = optional_param('message', '', PARAM_CLEANHTML) |
Definition at line 34 of file show_nonrespondents.php.
| $messageuser = optional_param('messageuser', false, PARAM_INT) |
Definition at line 36 of file show_nonrespondents.php.
Print the main part of the page //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////.
Print the users with no responses
Definition at line 143 of file show_nonrespondents.php.
| $perpage = optional_param('perpage', FEEDBACK_DEFAULT_PAGE_COUNT, PARAM_INT) |
Definition at line 38 of file show_nonrespondents.php.
| $showall = optional_param('showall', false, PARAM_INT) |
Definition at line 39 of file show_nonrespondents.php.
| $strfeedback = get_string("modulename", "feedback") |
Definition at line 118 of file show_nonrespondents.php.
| if ($action== 'sendmessage'AND has_capability('moodle/course:bulkmessaging', $coursecontext)) $strfeedbacks = get_string("modulenameplural", "feedback") |
Print the page header.
Definition at line 117 of file show_nonrespondents.php.
| $subject = optional_param('subject', '', PARAM_CLEANHTML) |
Definition at line 33 of file show_nonrespondents.php.
| if (has_capability('moodle/course:bulkmessaging', $coursecontext)) $table = new flexible_table('feedback-shownonrespondents-'.$course->id) |
Definition at line 157 of file show_nonrespondents.php.
Definition at line 149 of file show_nonrespondents.php.
| $tableheaders = array(get_string('userpic'), get_string('fullnameuser'), get_string('status')) |
Definition at line 150 of file show_nonrespondents.php.
| if (!$cm=get_coursemodule_from_id('feedback', $id)) if (!$course=$DB->get_record("course", array("id"=> $cm->course))) if (!$feedback=$DB->get_record("feedback", array("id"=> $cm->instance))) if ($feedback->anonymous!=FEEDBACK_ANONYMOUS_NO OR $feedback->course==SITEID) $url = new moodle_url('/mod/feedback/show_nonrespondents.php', array('id'=>$cm->id)) |
Definition at line 64 of file show_nonrespondents.php.