ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTaxonomyListTableGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2011 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("./Services/Table/classes/class.ilTable2GUI.php");
6 
16 {
20  function __construct($a_parent_obj, $a_parent_cmd, $a_assigned_object_id, $a_info = null)
21  {
22  global $ilCtrl, $lng, $ilAccess, $lng;
23 
24  parent::__construct($a_parent_obj, $a_parent_cmd);
25  $this->assigned_object_id = $a_assigned_object_id;
26 
27  include_once("./Services/Taxonomy/classes/class.ilObjTaxonomy.php");
28  $this->setData(ilObjTaxonomy::getUsageOfObject($this->assigned_object_id, true));
29  $this->setTitle($lng->txt("obj_taxf"));
30  $this->setDescription($a_info);
31 
32  $this->addColumn($this->lng->txt("title"), "title");
33  $this->addColumn($this->lng->txt("actions"));
34 
35  $this->setDefaultOrderField("title");
36  $this->setDefaultOrderDirection("asc");
37 
38  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
39  $this->setRowTemplate("tpl.taxonomy_list_row.html", "Services/Taxonomy");
40 
41  //$this->addMultiCommand("", $lng->txt(""));
42  //$this->addCommandButton("", $lng->txt(""));
43  }
44 
48  protected function fillRow($a_set)
49  {
50  global $lng, $ilCtrl;
51 
52  $ilCtrl->setParameter($this->parent_obj, "tax_id", $a_set["tax_id"]);
53  $this->tpl->setCurrentBlock("cmd");
54  $this->tpl->setVariable("HREF_CMD", $ilCtrl->getLinkTarget($this->parent_obj, "listNodes"));
55  $this->tpl->setVariable("CMD", $lng->txt("edit"));
56  $this->tpl->parseCurrentBlock();
57  $this->tpl->setCurrentBlock("cmd");
58  $this->tpl->setVariable("HREF_CMD", $ilCtrl->getLinkTarget($this->parent_obj, "confirmDeleteTaxonomy"));
59  $this->tpl->setVariable("CMD", $lng->txt("delete"));
60  $this->tpl->parseCurrentBlock();
61  $ilCtrl->setParameter($this->parent_obj, "tax_id", $_GET["tax_id"]);
62 
63  $this->tpl->setVariable("TITLE", $a_set["title"]);
64  }
65 
66 }
67 ?>
setDescription($a_val)
Set description.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
static getUsageOfObject($a_obj_id, $a_include_titles=false)
Get usage of object.
__construct($a_parent_obj, $a_parent_cmd, $a_assigned_object_id, $a_info=null)
Constructor.
$_GET["client_id"]
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.
Class ilTable2GUI.
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="")
Add a column to the header.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
global $lng
Definition: privfeed.php:40
TableGUI class for taxonomy list.