ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilTrashTableGUI.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once("./Services/Table/classes/class.ilTable2GUI.php");
5require_once('./Services/Repository/classes/class.ilObjectPlugin.php');
6
16{
17
21 function __construct($a_parent_obj, $a_parent_cmd)
22 {
23 global $ilCtrl, $lng, $ilAccess, $lng;
24
25 $this->ref_id = $a_ref_id;
26
27 parent::__construct($a_parent_obj, $a_parent_cmd);
28 //$this->setTitle($lng->txt(""));
29
30 $this->addColumn($this->lng->txt(""), "", "1", 1);
31 $this->addColumn($this->lng->txt("type"), "", "1");
32 $this->addColumn($this->lng->txt("title"), "title");
33 $this->addColumn($this->lng->txt("last_change"), "last_update");
34 $this->setDefaultOrderField("title");
35 $this->setDefaultOrderDirection("asc");
36
37
38 $this->setEnableHeader(true);
39 $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
40 $this->setRowTemplate("tpl.trash_list_row.html", "Services/Repository");
41 //$this->disable("footer");
42 $this->setEnableTitle(true);
43 $this->setSelectAllCheckbox("trash_id[]");
44
45 $this->addMultiCommand("undelete",$lng->txt("btn_undelete"));
46 $this->addMultiCommand("confirmRemoveFromSystem", $lng->txt("btn_remove_system"));
47 }
48
52 protected function fillRow($a_set)
53 {
54 global $lng, $objDefinition;
55
56 $img = ilObject::_getIcon($obj_id, "small", $a_set["type"]);
57 if (is_file($img))
58 {
59 $alt = ($objDefinition->isPlugin($a_set["type"]))
60 ? $lng->txt("icon")." ".ilObjectPlugin::lookupTxtById($a_set["type"], "obj_".$a_set["type"])
61 : $lng->txt("icon")." ".$lng->txt("obj_".$a_set["type"]);
62
63 $this->tpl->setVariable("IMG_TYPE", ilUtil::img($img, $alt));
64 }
65 $this->tpl->setVariable("ID", $a_set["ref_id"]);
66 $this->tpl->setVariable("VAL_TITLE", $a_set["title"]);
67 $this->tpl->setVariable("VAL_LAST_CHANGE", $a_set["last_update"]);
68 }
69
70}
71?>
An exception for terminatinating execution or to throw for unit testing.
static lookupTxtById($plugin_id, $lang_var)
static _getIcon($a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
Class ilTable2GUI.
setEnableHeader($a_enableheader)
Set Enable Header.
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.
setEnableTitle($a_enabletitle)
Set Enable Title.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
addMultiCommand($a_cmd, $a_text)
Add Command button.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
TableGUI class for.
__construct($a_parent_obj, $a_parent_cmd)
Constructor.
fillRow($a_set)
Fill table row.
static img($a_src, $a_alt="", $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
global $ilCtrl
Definition: ilias.php:18
global $lng
Definition: privfeed.php:17