Public Member Functions | |
| ilQTIAssessmentcontrol () | |
| setView ($a_view) | |
| getView () | |
| setHintswitch ($a_hintswitch) | |
| getHintswitch () | |
| setSolutionswitch ($a_solutionswitch) | |
| getSolutionswitch () | |
| setFeedbackswitch ($a_feedbackswitch) | |
| getFeedbackswitch () | |
Data Fields | |
| $hintswitch | |
| $solutionswitch | |
| $view | |
| $feedbackswitch | |
Definition at line 32 of file class.ilQTIAssessmentcontrol.php.
| ilQTIAssessmentcontrol::getFeedbackswitch | ( | ) |
Definition at line 125 of file class.ilQTIAssessmentcontrol.php.
{
return $this->feedbackswitch;
}
| ilQTIAssessmentcontrol::getHintswitch | ( | ) |
Definition at line 87 of file class.ilQTIAssessmentcontrol.php.
{
return $this->hintswitch;
}
| ilQTIAssessmentcontrol::getSolutionswitch | ( | ) |
Definition at line 106 of file class.ilQTIAssessmentcontrol.php.
{
return $this->solutionswitch;
}
| ilQTIAssessmentcontrol::getView | ( | ) |
Definition at line 68 of file class.ilQTIAssessmentcontrol.php.
{
return $this->view;
}
| ilQTIAssessmentcontrol::ilQTIAssessmentcontrol | ( | ) |
Definition at line 39 of file class.ilQTIAssessmentcontrol.php.
{
$this->hintswitch = "";
$this->solutionswitch = "";
$this->view = "All";
$this->feedbackswitch = "";
}
| ilQTIAssessmentcontrol::setFeedbackswitch | ( | $ | a_feedbackswitch | ) |
Definition at line 111 of file class.ilQTIAssessmentcontrol.php.
{
switch ($a_feedbackswitch)
{
case "Yes":
case "No":
$this->feedbackswitch = $a_feedbackswitch;
break;
default:
$this->feedbackswitch = "Yes";
break;
}
}
| ilQTIAssessmentcontrol::setHintswitch | ( | $ | a_hintswitch | ) |
Definition at line 73 of file class.ilQTIAssessmentcontrol.php.
{
switch ($a_hintswitch)
{
case "Yes":
case "No":
$this->hintswitch = $a_hintswitch;
break;
default:
$this->hintswitch = "Yes";
break;
}
}
| ilQTIAssessmentcontrol::setSolutionswitch | ( | $ | a_solutionswitch | ) |
Definition at line 92 of file class.ilQTIAssessmentcontrol.php.
{
switch ($a_solutionswitch)
{
case "Yes":
case "No":
$this->solutionswitch = $a_solutionswitch;
break;
default:
$this->solutionswitch = "Yes";
break;
}
}
| ilQTIAssessmentcontrol::setView | ( | $ | a_view | ) |
Definition at line 47 of file class.ilQTIAssessmentcontrol.php.
{
switch ($a_view)
{
case "Administrator":
case "AdminAuthority":
case "Assessor":
case "Author":
case "Candidate":
case "InvigilatorProctor":
case "Psychometrician":
case "Scorer":
case "Tutor":
$this->view = $a_view;
break;
default:
$this->view = "All";
break;
}
}
| ilQTIAssessmentcontrol::$feedbackswitch |
Definition at line 37 of file class.ilQTIAssessmentcontrol.php.
| ilQTIAssessmentcontrol::$hintswitch |
Definition at line 34 of file class.ilQTIAssessmentcontrol.php.
| ilQTIAssessmentcontrol::$solutionswitch |
Definition at line 35 of file class.ilQTIAssessmentcontrol.php.
| ilQTIAssessmentcontrol::$view |
Definition at line 36 of file class.ilQTIAssessmentcontrol.php.
1.7.1