ILIAS  Release_4_1_x_branch Revision 61804
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilSurveyCodesMailTableGUI.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 $counter;
37  protected $confirmdelete;
38 
46  public function __construct($a_parent_obj, $a_parent_cmd, $confirmdelete = false)
47  {
48  parent::__construct($a_parent_obj, $a_parent_cmd);
49 
50  global $lng, $ilCtrl;
51 
52  $this->lng = $lng;
53  $this->ctrl = $ilCtrl;
54  $this->counter = 1;
55  $this->confirmdelete = $confirmdelete;
56 
57  $this->setFormName('codesform');
58  $this->setStyle('table', 'fullwidth');
59 
60  if (!$confirmdelete)
61  {
62  $this->addColumn('','f','1%');
63  }
64  $this->addColumn($this->lng->txt("email"),'email', '');
65  $this->addColumn($this->lng->txt("mail_sent_short"),'sent', '');
66 
67  $this->setRowTemplate("tpl.il_svy_svy_codes_mail_row.html", "Modules/Survey");
68 
69  if ($confirmdelete)
70  {
71  $this->addCommandButton('deleteExternalMailRecipients', $this->lng->txt('confirm'));
72  $this->addCommandButton('cancelDeleteExternalMailRecipients', $this->lng->txt('cancel'));
73  }
74  else
75  {
76  $this->addMultiCommand('deleteInternalMailRecipient', $this->lng->txt('delete'));
77 // $this->addCommandButton('addInternalMailRecipient', $this->lng->txt('add'));
78  $this->addCommandButton('importExternalMailRecipients', $this->lng->txt('import'));
79  }
80 
81  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
82 
83  $this->setDefaultOrderField("code");
84  $this->setDefaultOrderDirection("asc");
85 
86  if ($confirmdelete)
87  {
88  $this->disable('sort');
89  $this->disable('select_all');
90  }
91  else
92  {
93  $this->setPrefix('chb_ext');
94  $this->setSelectAllCheckbox('chb_ext');
95  $this->enable('sort');
96  $this->enable('select_all');
97  }
98  $this->enable('header');
99  }
100 
101  public function completeColumns()
102  {
103  if (is_array($this->row_data))
104  {
105  if (array_key_exists(0, $this->row_data) && is_array($this->row_data[0]))
106  {
107  foreach ($this->row_data[0] as $key => $value)
108  {
109  if (strcmp($key, 'email') != 0 && strcmp($key, 'code') != 0 && strcmp($key, 'sent') != 0)
110  {
111  $this->addColumn($key,$key,'');
112  }
113  }
114  }
115  }
116  }
117 
125  public function fillRow($data)
126  {
127  global $lng;
128 
129  if (!$this->confirmdelete)
130  {
131  $this->tpl->setCurrentBlock('checkbox');
132  $this->tpl->setVariable('CB_CODE', $data['code']);
133  $this->tpl->parseCurrentBlock();
134  }
135  else
136  {
137  $this->tpl->setCurrentBlock('hidden');
138  $this->tpl->setVariable('HIDDEN_CODE', $data["code"]);
139  $this->tpl->parseCurrentBlock();
140  }
141 
142  $this->tpl->setVariable('EMAIL', $data['email']);
143  $this->tpl->setVariable('SENT', ($data['sent']) ? '&#10003;' : '');
144  $this->tpl->setVariable('CB_CODE', $data['code']);
145  foreach ($data as $key => $value)
146  {
147  if (strcmp($key, 'email') != 0 && strcmp($key, 'code') != 0 && strcmp($key, 'sent') != 0)
148  {
149  $this->tpl->setCurrentBlock('column');
150  $this->tpl->setVariable('COLUMN', $value);
151  $this->tpl->parseCurrentBlock();
152  }
153  }
154  }
155 }
156 ?>