38 public function __construct($a_parent_obj, $a_parent_cmd, $a_object, $a_write_access =
false)
42 $this->rbacreview = $DIC->rbac()->review();
43 $this->
user = $DIC->user();
44 $this->access = $DIC->access();
47 $lng = $DIC->language();
56 $this->
setStyle(
'table',
'fullwidth');
58 $this->
addColumn($this->lng->txt(
"title"),
'title',
'');
60 $this->
addColumn($this->lng->txt(
"description"),
'description',
'');
61 $this->
addColumn($this->lng->txt(
"question_type"),
'ttype',
'');
62 $this->
addColumn($this->lng->txt(
"author"),
'author',
'');
63 $this->
addColumn($this->lng->txt(
"create_date"),
'created',
'');
64 $this->
addColumn($this->lng->txt(
"last_update"),
'updated',
'');
65 $this->
addColumn($this->lng->txt(
"obj_spl"),
'spl',
'');
72 $this->
setRowTemplate(
"tpl.il_svy_svy_questionbrowser_row.html",
"Modules/Survey");
74 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
81 $this->
enable(
'select_all');
93 if ($item->getValue() !==
false) {
94 $arrFilter[$item->getPostVar()] = $item->getValue();
97 $data = $a_object->getQuestionsTable($arrFilter);
102 foreach (
$data as $idx => $row) {
103 $data[$idx][
"spl"] = $pools[$row[
"obj_fi"]];
126 $ti->setMaxLength(64);
127 $ti->setValidationRegexp(
'/^[^%]+$/is');
130 $ti->readFromSession();
131 $this->filter[
"title"] = $ti->getValue();
135 $ti->setMaxLength(64);
136 $ti->setValidationRegexp(
'/^[^%]+$/is');
139 $ti->readFromSession();
140 $this->filter[
"description"] = $ti->getValue();
144 $ti->setMaxLength(64);
145 $ti->setValidationRegexp(
'/^[^%]+$/is');
148 $ti->readFromSession();
149 $this->filter[
"author"] = $ti->getValue();
152 $types = ilObjSurveyQuestionPool::_getQuestionTypes();
154 $options[
""] =
$lng->txt(
'filter_all_question_types');
155 foreach ($types as $translation => $row) {
156 $options[$row[
'type_tag']] = $translation;
160 $si->setOptions($options);
162 $si->readFromSession();
163 $this->filter[
"type"] =
$si->getValue();
168 $ti->setMaxLength(64);
171 $ti->readFromSession();
172 $this->filter[
"spl_txt"] = $ti->getValue();
176 $options[
""] =
$lng->txt(
'filter_all_questionpools');
177 natcasesort($this->questionpools);
178 foreach ($this->questionpools as $obj_id =>
$title) {
179 $options[$obj_id] =
$title;
182 $si->setOptions($options);
184 $si->readFromSession();
185 $this->filter[
"type"] =
$si->getValue();
200 $this->tpl->setVariable(
'QUESTION_ID',
$data[
"question_id"]);
203 $this->tpl->setVariable(
"TXT_PREVIEW", $this->lng->txt(
"preview"));
204 $guiclass = strtolower(
$data[
'type_tag']) .
"gui";
205 $this->ctrl->setParameterByClass($guiclass,
"q_id",
$data[
"question_id"]);
206 $this->tpl->setVariable(
"LINK_PREVIEW",
"ilias.php?baseClass=ilObjSurveyQuestionPoolGUI&ref_id=" .
$data[
"ref_id"] .
"&cmd=preview&preview=" .
$data[
"question_id"]);
208 $this->tpl->setVariable(
"QUESTION_DESCRIPTION",
ilUtil::prepareFormOutput((strlen($data[
"description"])) ? $data[
"description"] :
""));
209 $this->tpl->setVariable(
"QUESTION_TYPE", $data[
"ttype"]);
218 $this->editable = $value;
228 $this->writeAccess = $value;
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
__construct($a_parent_obj, $a_parent_cmd, $a_object, $a_write_access=false)
Constructor.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setStyle($a_element, $a_style)
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setResetCommand($a_val, $a_caption=null)
Set reset filter command.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
addMultiCommand($a_cmd, $a_text)
Add Command button.
enable($a_module_name)
enables particular modules of table
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setFormName($a_formname="")
Set Form name.
__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.
getFilterItems($a_optionals=false)
Get filter items.
static _getAvailableQuestionpools($use_object_id=false, $could_be_offline=false, $showPath=false, $permission="read")
Returns the available question pools for the active user.
setFilterCommand($a_val, $a_caption=null)
Set filter command.