ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.SurveyMaterialsSourceTableGUI.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  public function __construct(
26  object $a_parent_obj,
27  string $a_parent_cmd,
28  string $a_cancel_cmd
29  ) {
30  global $DIC;
31 
32  $this->ctrl = $DIC->ctrl();
33  $this->lng = $DIC->language();
34  $ilCtrl = $DIC->ctrl();
35  $lng = $DIC->language();
36 
37  parent::__construct($a_parent_obj, $a_parent_cmd);
38 
39  $this->addColumn($lng->txt("title"), "title");
40  $this->addColumn($lng->txt("action"), "");
41  $this->setTitle($this->lng->txt('select_object_to_link'));
42 
43  $this->setLimit(9999);
44  $this->disable("numinfo");
45 
46  $this->setRowTemplate("tpl.il_svy_qpl_material_source_row.html", "Modules/SurveyQuestionPool");
47 
48  $this->setFormAction($ilCtrl->getFormAction($this->getParentObject(), $this->getParentCmd()));
49  $this->addCommandButton($a_cancel_cmd, $this->lng->txt('cancel'));
50 
51  $this->setDefaultOrderField("title");
52  $this->setDefaultOrderDirection("asc");
53  }
54 
55  protected function fillRow(array $a_set): void
56  {
57  $ilCtrl = $this->ctrl;
58  $lng = $this->lng;
59 
60  $url_cmd = "add" . strtoupper($a_set["item_type"]);
61  $url_type = strtolower($a_set["item_type"]);
62 
63  $ilCtrl->setParameter($this->getParentObject(), $url_type, $a_set["item_id"]);
64  $url = $ilCtrl->getLinkTarget($this->getParentObject(), $url_cmd) .
65  $ilCtrl->setParameter($this->getParentObject(), $url_type, "");
66 
67  $this->tpl->setVariable("TITLE", $a_set['title']);
68  $this->tpl->setVariable("URL_ADD", $url);
69  $this->tpl->setVariable("TXT_ADD", $lng->txt("add"));
70  }
71 }
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)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilLanguage $lng
global $DIC
Definition: feed.php:28
__construct(object $a_parent_obj, string $a_parent_cmd, string $a_cancel_cmd)
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
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)
$url