ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.SurveyMaterialsSourceTableGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
11 {
12  public function __construct($a_parent_obj, $a_parent_cmd, $a_cancel_cmd)
13  {
14  global $DIC;
15 
16  $this->ctrl = $DIC->ctrl();
17  $this->lng = $DIC->language();
18  $ilCtrl = $DIC->ctrl();
19  $lng = $DIC->language();
20 
21  parent::__construct($a_parent_obj, $a_parent_cmd);
22 
23  $this->addColumn($lng->txt("title"), "title");
24  $this->addColumn($lng->txt("action"), "");
25  $this->setTitle($this->lng->txt('select_object_to_link'));
26 
27  $this->setLimit(9999);
28  $this->disable("numinfo");
29 
30  $this->setRowTemplate("tpl.il_svy_qpl_material_source_row.html", "Modules/SurveyQuestionPool");
31 
32  $this->setFormAction($ilCtrl->getFormAction($this->getParentObject(), $this->getParentCmd()));
33  $this->addCommandButton($a_cancel_cmd, $this->lng->txt('cancel'));
34 
35  $this->setDefaultOrderField("title");
36  $this->setDefaultOrderDirection("asc");
37  }
38 
42  protected function fillRow($data)
43  {
45  $lng = $this->lng;
46 
47  $url_cmd = "add" . strtoupper($data["item_type"]);
48  $url_type = strtolower($data["item_type"]);
49 
50  $ilCtrl->setParameter($this->getParentObject(), $url_type, $data["item_id"]);
51  $url = $ilCtrl->getLinkTarget($this->getParentObject(), $url_cmd) .
52  $ilCtrl->setParameter($this->getParentObject(), $url_type, "");
53 
54  $this->tpl->setVariable("TITLE", $data['title']);
55  $this->tpl->setVariable("URL_ADD", $url);
56  $this->tpl->setVariable("TXT_ADD", $lng->txt("add"));
57  }
58 }
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
TableGUI class for survey question source materials.
getParentCmd()
Get parent command.
getParentObject()
Get parent object.
global $ilCtrl
Definition: ilias.php:18
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
__construct($a_parent_obj, $a_parent_cmd, $a_cancel_cmd)
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
disable($a_module_name)
diesables particular modules of table
__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.
$DIC
Definition: xapitoken.php:46
$url
setLimit($a_limit=0, $a_default_limit=0)