31 public function __construct($a_parent_obj, $a_parent_cmd, $a_write_access =
false)
35 $this->rbacreview = $DIC->rbac()->review();
36 $this->
user = $DIC->user();
42 $lng = $DIC->language();
59 $this->
addColumn($this->lng->txt(
"title"),
'title',
'');
60 $this->
addColumn($this->lng->txt(
"obligatory"),
"");
63 if (strcmp(
$c,
'description') == 0) {
64 $this->
addColumn($this->lng->txt(
"description"),
'description',
'');
66 if (strcmp(
$c,
'type') == 0) {
67 $this->
addColumn($this->lng->txt(
"question_type"),
'type',
'');
69 if (strcmp(
$c,
'author') == 0) {
70 $this->
addColumn($this->lng->txt(
"author"),
'author',
'');
72 if (strcmp(
$c,
'created') == 0) {
73 $this->
addColumn($this->lng->txt(
"create_date"),
'created',
'');
75 if (strcmp(
$c,
'updated') == 0) {
76 $this->
addColumn($this->lng->txt(
"last_update"),
'tstamp',
'');
90 if (array_key_exists(
"spl_clipboard",
$_SESSION)) {
94 $this->
addCommandButton(
"saveObligatory", $this->lng->txt(
"spl_save_obligatory_state"));
98 $this->
setRowTemplate(
"tpl.il_svy_qpl_questions_row.html",
"Modules/SurveyQuestionPool");
100 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
126 $ti->setMaxLength(64);
128 $ti->setValidationRegexp(
'/^[^%]+$/is');
130 $ti->readFromSession();
131 $this->filter[
"title"] = $ti->getValue();
135 $ti->setMaxLength(64);
137 $ti->setValidationRegexp(
'/^[^%]+$/is');
139 $ti->readFromSession();
140 $this->filter[
"description"] = $ti->getValue();
144 $ti->setMaxLength(64);
146 $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();
169 $cols[
"description"] = array(
170 "txt" =>
$lng->txt(
"description"),
173 $cols[
"type"] = array(
174 "txt" =>
$lng->txt(
"question_type"),
177 $cols[
"author"] = array(
178 "txt" =>
$lng->txt(
"author"),
181 $cols[
"created"] = array(
182 "txt" =>
$lng->txt(
"create_date"),
185 $cols[
"updated"] = array(
186 "txt" =>
$lng->txt(
"last_update"),
202 $guiclass = $class .
"GUI";
203 $this->ctrl->setParameterByClass(strtolower($guiclass),
"q_id",
$data[
"question_id"]);
206 $url_edit = $this->ctrl->getLinkTargetByClass(strtolower($guiclass),
"editQuestion");
208 $this->tpl->setCurrentBlock(
"title_link_bl");
209 $this->tpl->setVariable(
"QUESTION_TITLE_LINK",
$data[
"title"]);
210 $this->tpl->setVariable(
"URL_TITLE", $url_edit);
211 $this->tpl->parseCurrentBlock();
213 $this->tpl->setCurrentBlock(
"title_nolink_bl");
214 $this->tpl->setVariable(
"QUESTION_TITLE",
$data[
"title"]);
215 $this->tpl->parseCurrentBlock();
218 if (
$data[
"complete"] == 0) {
219 $this->tpl->setCurrentBlock(
"qpl_warning");
221 $this->tpl->setVariable(
"ALT_WARNING", $this->lng->txt(
"warning_question_not_complete"));
222 $this->tpl->setVariable(
"TITLE_WARNING", $this->lng->txt(
"warning_question_not_complete"));
223 $this->tpl->parseCurrentBlock();
227 if (strcmp($c,
'description') == 0) {
228 $this->tpl->setCurrentBlock(
'description');
229 $this->tpl->setVariable(
"QUESTION_COMMENT", (strlen(
$data[
"description"])) ?
$data[
"description"] :
" ");
230 $this->tpl->parseCurrentBlock();
232 if (strcmp($c,
'type') == 0) {
233 $this->tpl->setCurrentBlock(
'type');
235 $this->tpl->parseCurrentBlock();
237 if (strcmp($c,
'author') == 0) {
238 $this->tpl->setCurrentBlock(
'author');
239 $this->tpl->setVariable(
"QUESTION_AUTHOR",
$data[
"author"]);
240 $this->tpl->parseCurrentBlock();
242 if (strcmp($c,
'created') == 0) {
243 $this->tpl->setCurrentBlock(
'created');
245 $this->tpl->parseCurrentBlock();
247 if (strcmp($c,
'updated') == 0) {
248 $this->tpl->setCurrentBlock(
'updated');
250 $this->tpl->parseCurrentBlock();
256 $list->setId(
$data[
"question_id"]);
257 $list->setListTitle($this->lng->txt(
"actions"));
259 $list->addItem($this->lng->txt(
"edit"),
"", $url_edit);
261 $list->addItem($this->lng->txt(
"preview"),
"", $this->ctrl->getLinkTargetByClass(strtolower($guiclass),
"preview"));
262 $this->tpl->setVariable(
"ACTION", $list->getHTML());
263 $this->tpl->parseCurrentBlock();
267 $checked =
$data[
"obligatory"] ?
" checked=\"checked\"" :
"";
268 $obligatory =
"<input type=\"checkbox\" name=\"obligatory_" .
269 $data[
"question_id"] .
"\" value=\"1\"" . $checked .
" />";
270 } elseif (
$data[
"obligatory"]) {
272 "\" alt=\"" . $this->lng->txt(
"question_obligatory") .
273 "\" title=\"" . $this->lng->txt(
"question_obligatory") .
"\" />";
275 $this->tpl->setVariable(
"OBLIGATORY", $obligatory);
278 $this->tpl->setVariable(
'CBOX_ID',
$data[
"question_id"]);
280 $this->tpl->setVariable(
'QUESTION_ID',
$data[
"question_id"]);
285 $this->editable = $value;
295 $this->writeAccess = $value;
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
static _getQuestionTypeName($type_tag)
Return the translation for a given question type tag.
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.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
addMultiCommand($a_cmd, $a_text)
Add Command button.
getSelectedColumns()
Get selected columns.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
static _getGUIClassNameForId($a_q_id)
__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.
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
__construct($a_parent_obj, $a_parent_cmd, $a_write_access=false)
Constructor.
setFilterCommand($a_val, $a_caption=null)
Set filter command.