ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilSurveyPhrasesTableGUI.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 
35 {
36  protected $confirmdelete;
37 
45  public function __construct($a_parent_obj, $a_parent_cmd, $confirmdelete = false)
46  {
47  parent::__construct($a_parent_obj, $a_parent_cmd);
48 
49  global $lng, $ilCtrl;
50 
51  $this->lng = $lng;
52  $this->ctrl = $ilCtrl;
53  $this->confirmdelete = $confirmdelete;
54 
55  $this->setFormName('phrases');
56  $this->setStyle('table', 'fullwidth');
57  if (!$confirmdelete)
58  {
59  $this->addColumn('','f','1%');
60  }
61  $this->addColumn($this->lng->txt("phrase"),'phrase', '');
62  $this->addColumn($this->lng->txt("answers"),'answers', '');
63 
64  if ($confirmdelete)
65  {
66  $this->addCommandButton('confirmDeletePhrase', $this->lng->txt('confirm'));
67  $this->addCommandButton('cancelDeletePhrase', $this->lng->txt('cancel'));
68  }
69  else
70  {
71  $this->addMultiCommand('deletePhrase', $this->lng->txt('delete'));
72  }
73 
74  $this->setRowTemplate("tpl.il_svy_qpl_phrase_row.html", "Modules/SurveyQuestionPool");
75 
76  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
77  $this->setDefaultOrderField("phrase");
78  $this->setDefaultOrderDirection("asc");
79 
80  if ($confirmdelete)
81  {
82  $this->disable('sort');
83  $this->disable('select_all');
84  }
85  else
86  {
87  $this->setPrefix('phrase');
88  $this->setSelectAllCheckbox('phrase');
89  $this->enable('sort');
90  $this->enable('select_all');
91  }
92  $this->enable('header');
93  }
94 
102  public function fillRow($data)
103  {
104  if (!$this->confirmdelete)
105  {
106  $this->tpl->setCurrentBlock('checkbox');
107  $this->tpl->setVariable('CB_PHRASE_ID', $data["phrase_id"]);
108  $this->tpl->parseCurrentBlock();
109  }
110  else
111  {
112  $this->tpl->setCurrentBlock('hidden');
113  $this->tpl->setVariable('HIDDEN_PHRASE_ID', $data["phrase_id"]);
114  $this->tpl->parseCurrentBlock();
115  }
116  $this->tpl->setVariable('PHRASE_ID', $data["phrase_id"]);
117  $this->tpl->setVariable("PHRASE", $data["phrase"]);
118  $this->tpl->setVariable("ANSWERS", $data["answers"]);
119  }
120 }
121 ?>