ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.SurveyMaterialsSourceTableGUI.php
Go to the documentation of this file.
1<?php
2/*
3 +-----------------------------------------------------------------------------+
4 | ILIAS open source |
5 +-----------------------------------------------------------------------------+
6 | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7 | |
8 | This program is free software; you can redistribute it and/or |
9 | modify it under the terms of the GNU General Public License |
10 | as published by the Free Software Foundation; either version 2 |
11 | of the License, or (at your option) any later version. |
12 | |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | GNU General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program; if not, write to the Free Software |
20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21 +-----------------------------------------------------------------------------+
22*/
23
24include_once("./Services/Table/classes/class.ilTable2GUI.php");
25
36{
37 public function __construct($a_parent_obj, $a_parent_cmd, $a_cancel_cmd)
38 {
39 global $ilCtrl, $lng;
40
41 parent::__construct($a_parent_obj, $a_parent_cmd);
42
43 $this->addColumn($lng->txt("title"), "title");
44 $this->addColumn($lng->txt("action"), "");
45 $this->setTitle($this->lng->txt('select_object_to_link'));
46
47 $this->setLimit(9999);
48 $this->disable("numinfo");
49
50 $this->setRowTemplate("tpl.il_svy_qpl_material_source_row.html", "Modules/SurveyQuestionPool");
51
52 $this->setFormAction($ilCtrl->getFormAction($this->getParentObject(), $this->getParentCmd()));
53 $this->addCommandButton($a_cancel_cmd, $this->lng->txt('cancel'));
54
55 $this->setDefaultOrderField("title");
56 $this->setDefaultOrderDirection("asc");
57 }
58
62 protected function fillRow($data)
63 {
64 global $ilCtrl, $lng;
65
66 $url_cmd = "add".strtoupper($data["item_type"]);
67 $url_type = strtolower($data["item_type"]);
68
69 $ilCtrl->setParameter($this->getParentObject(), $url_type, $data["item_id"]);
70 $url = $ilCtrl->getLinkTarget($this->getParentObject(), $url_cmd).
71 $ilCtrl->setParameter($this->getParentObject(), $url_type, "");
72
73 $this->tpl->setVariable("TITLE", $data['title']);
74 $this->tpl->setVariable("URL_ADD", $url);
75 $this->tpl->setVariable("TXT_ADD", $lng->txt("add"));
76 }
77}
78?>
TableGUI class for survey question source materials.
__construct($a_parent_obj, $a_parent_cmd, $a_cancel_cmd)
Constructor.
Class ilTable2GUI.
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.
getParentObject()
Get parent object.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setLimit($a_limit=0, $a_default_limit=0)
set max.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
disable($a_module_name)
diesables particular modules of table
global $ilCtrl
Definition: ilias.php:18
global $lng
Definition: privfeed.php:40
$url
Definition: shib_logout.php:72