ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilHelpTooltipTableGUI.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 
14 {
18  protected $access;
19 
20 
24  public function __construct($a_parent_obj, $a_parent_cmd, $a_comp)
25  {
26  global $DIC;
27 
28  $this->ctrl = $DIC->ctrl();
29  $this->lng = $DIC->language();
30  $this->access = $DIC->access();
31  $ilCtrl = $DIC->ctrl();
32  $lng = $DIC->language();
33  $ilAccess = $DIC->access();
34  $lng = $DIC->language();
35 
36  $this->setId("lm_help_tooltips");
37 
38  parent::__construct($a_parent_obj, $a_parent_cmd);
39 
40  $this->setData(ilHelp::getAllTooltips($a_comp));
41 
42  $this->setTitle($lng->txt("help_tooltips"));
43 
44  $this->addColumn("", "", "1px", true);
45  $this->addColumn($this->lng->txt("help_tooltip_id"));
46  $this->addColumn($this->lng->txt("help_tt_text"));
47 
48  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
49  $this->setRowTemplate("tpl.help_tooltip.html", "Modules/LearningModule");
50  $this->setDefaultOrderField("tt_id");
51  $this->setDefaultOrderDirection("asc");
52 
53  $this->addCommandButton("saveTooltips", $lng->txt("save"));
54  $this->addMultiCommand("deleteTooltips", $lng->txt("delete"));
55  }
56 
60  protected function fillRow($a_set)
61  {
62  $lng = $this->lng;
63 
64  $this->tpl->setVariable("ID", $a_set["id"]);
65  $this->tpl->setVariable("TEXT", ilUtil::prepareFormOutput($a_set["text"]));
66  $this->tpl->setVariable("TT_ID", ilUtil::prepareFormOutput($a_set["tt_id"]));
67  }
68 }
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
__construct($a_parent_obj, $a_parent_cmd, $a_comp)
Constructor.
setId($a_val)
Set id.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
static getAllTooltips($a_comp="", $a_module_id=0)
Get all tooltips.
global $DIC
Definition: goto.php:24
addMultiCommand($a_cmd, $a_text)
Add Command button.
fillRow($a_set)
Fill table row.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__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.