ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSurveyMaterialsTableGUI.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  private int $counter;
26  private bool $write_access;
27 
28  public function __construct(
29  object $a_parent_obj,
30  string $a_parent_cmd,
31  bool $a_write_access = false
32  ) {
33  global $DIC;
34 
35  $ilCtrl = $DIC->ctrl();
36  $lng = $DIC->language();
37 
38  parent::__construct($a_parent_obj, $a_parent_cmd);
39 
40  $this->write_access = $a_write_access;
41  $this->counter = 1;
42  $this->lng = $lng;
43  $this->ctrl = $ilCtrl;
44  $this->setFormName('evaluation_all');
45  $this->setStyle('table', 'fullwidth');
46  $this->addColumn('', 'f', '1%');
47  $this->addColumn($lng->txt("type"), "type", "");
48  $this->addColumn($lng->txt("material"), "material", "");
49  $this->setTitle($this->lng->txt('materials'));
50 
51  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
52  $this->setRowTemplate("tpl.il_svy_qpl_material_row.html", "Modules/SurveyQuestionPool");
53  $this->setPrefix('idx');
54  $this->setSelectAllCheckbox('idx');
55  $this->disable('sort');
56  $this->enable('header');
57 
58  if ($this->write_access) {
59  $this->addMultiCommand('deleteMaterial', $this->lng->txt('remove'));
60  }
61  }
62 
63  protected function fillRow(array $a_set): void
64  {
65  $this->tpl->setVariable("TYPE", $a_set['type']);
66  $this->tpl->setVariable("TITLE", $a_set['title']);
67  $this->tpl->setVariable("HREF", $a_set['href']);
68  $this->tpl->setVariable("CHECKBOX_VALUE", $this->counter - 1);
69  $this->tpl->setVariable("COUNTER", $this->counter++);
70  }
71 }
enable(string $a_module_name)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setFormAction(string $a_form_action, bool $a_multipart=false)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setFormName(string $a_name="")
ilLanguage $lng
global $DIC
Definition: feed.php:28
setStyle(string $a_element, string $a_style)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(object $a_parent_obj, string $a_parent_cmd, bool $a_write_access=false)
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
addMultiCommand(string $a_cmd, string $a_text)
setPrefix(string $a_prefix)