ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
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 
24 include_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 ?>