29 public function __construct($a_parent_obj, $a_parent_cmd, $a_lm)
33 $this->ctrl = $DIC->ctrl();
34 $this->lng = $DIC->language();
35 $this->access = $DIC->access();
36 $this->rbacsystem = $DIC->rbac()->system();
38 $lng = $DIC->language();
39 $ilAccess = $DIC->access();
40 $lng = $DIC->language();
45 $this->
setId(
"lm_qst" . $this->lm->getId());
52 $this->
addColumn($this->lng->txt(
"question"));
53 $this->
addColumn($this->lng->txt(
"cont_users_answered"));
54 $this->
addColumn($this->lng->txt(
"cont_correct_after_first"));
55 $this->
addColumn($this->lng->txt(
"cont_second"));
56 $this->
addColumn($this->lng->txt(
"cont_third_and_more"));
57 $this->
addColumn($this->lng->txt(
"cont_never"));
64 $this->
setRowTemplate(
"tpl.lm_question_row.html",
"Modules/LearningModule");
97 if (count($questions[
"set"]) == 0 && $this->
getOffset() > 0) {
109 $this->
setData($questions[
"set"]);
121 $this->tpl->setVariable(
125 $this->tpl->setVariable(
132 $this->tpl->setVariable(
"VAL_ANSWERED", (
int) $stats[
"all"]);
133 if ($stats[
"all"] == 0) {
134 $this->tpl->setVariable(
"VAL_CORRECT_FIRST", 0);
135 $this->tpl->setVariable(
"VAL_CORRECT_SECOND", 0);
136 $this->tpl->setVariable(
"VAL_CORRECT_THIRD_OR_MORE", 0);
137 $this->tpl->setVariable(
"VAL_NEVER", 0);
139 $this->tpl->setVariable(
"VAL_CORRECT_FIRST", $stats[
"first"] .
140 " (" . (100 / $stats[
"all"] * $stats[
"first"]) .
" %)");
141 $this->tpl->setVariable(
"VAL_CORRECT_SECOND", $stats[
"second"] .
142 " (" . (100 / $stats[
"all"] * $stats[
"second"]) .
" %)");
143 $this->tpl->setVariable(
"VAL_CORRECT_THIRD_AND_MORE", $stats[
"third_or_more"] .
144 " (" . (100 / $stats[
"all"] * $stats[
"third_or_more"]) .
" %)");
145 $nev = $stats[
"all"] - $stats[
"first"] - $stats[
"second"] - $stats[
"third_or_more"];
146 $this->tpl->setVariable(
"VAL_NEVER", $nev .
147 " (" . (100 / $stats[
"all"] * $nev) .
" %)");
getItems()
Get user items.
static _getQuestionText($a_q_id)
Returns question text.
setExternalSorting($a_val)
Set external sorting.
setExternalSegmentation($a_val)
Set external segmentation.
resetOffset($a_in_determination=false)
Reset offset.
static _lookupTitle($a_obj_id)
Lookup title.
getOrderDirection()
Get order direction.
static getQuestionStatistics($a_q_id)
Get statistics for question.
static queryQuestionsOfLearningModule( $a_lm_id, $a_order_field, $a_order_dir, $a_offset, $a_limit)
Get questions of learning module.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
__construct($a_parent_obj, $a_parent_cmd, $a_lm)
Constructor.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
determineOffsetAndOrder($a_omit_offset=false)
Determine offset and order.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setEnableHeader($a_enableheader)
Set Enable Header.
setMaxCount($a_max_count)
set max.
setEnableTitle($a_enabletitle)
Set Enable Title.
fillRow($a_set)
Fill table row.