ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5
class.ilSurveyCodesTableGUI.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 {
43  public function __construct($a_parent_obj, $a_parent_cmd)
44  {
45  parent::__construct($a_parent_obj, $a_parent_cmd);
46 
47  global $lng, $ilCtrl;
48 
49  $this->lng = $lng;
50  $this->ctrl = $ilCtrl;
51 
52  $this->setFormName('codesform');
53 
54  $this->addColumn('','','1%');
55  $this->addColumn($this->lng->txt("survey_code"),'code', '');
56  $this->addColumn($this->lng->txt("email"),'email', '');
57  $this->addColumn($this->lng->txt("lastname"),'last_name', '');
58  $this->addColumn($this->lng->txt("firstname"),'first_name', '');
59  $this->addColumn($this->lng->txt("create_date"),'date', '');
60  $this->addColumn($this->lng->txt("survey_code_used"),'used', '');
61  $this->addColumn($this->lng->txt("mail_sent_short"),'sent', '');
62  $this->addColumn($this->lng->txt("survey_code_url"));
63 
64  $this->setRowTemplate("tpl.il_svy_svy_codes_row.html", "Modules/Survey");
65 
66  $this->addMultiCommand('editCodes', $this->lng->txt('edit'));
67  $this->addMultiCommand('exportCodes', $this->lng->txt('export'));
68  $this->addMultiCommand('deleteCodesConfirm', $this->lng->txt('delete'));
69 
70  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
71 
72  include_once "Services/UIComponent/Button/classes/class.ilSubmitButton.php";
73  $button = ilSubmitButton::getInstance();
74  $button->setCaption("export_all_survey_codes");
75  $button->setCommand("exportAllCodes");
76  $button->setOmitPreventDoubleSubmission(true);
77  $this->addCommandButtonInstance($button);
78 
79  $this->setDefaultOrderField("code");
80  $this->setDefaultOrderDirection("asc");
81 
82  $this->setPrefix('chb_code');
83  $this->setSelectAllCheckbox('chb_code');
84  }
85 
93  public function fillRow($data)
94  {
95  global $lng;
96 
97  $this->tpl->setVariable('CB_CODE', $data['id']);
98 
99  // :TODO: see permalink gui
100  if (strlen($data['href']))
101  {
102  $this->tpl->setCurrentBlock('url');
103  $this->tpl->setVariable("URL", $lng->txt("survey_code_url_name"));
104  $this->tpl->setVariable("HREF", $data['href']);
105  $this->tpl->parseCurrentBlock();
106  }
107 
108  $this->tpl->setVariable("USED", ($data['used']) ? $lng->txt("used") : $lng->txt("not_used"));
109  $this->tpl->setVariable("SENT", ($data['sent']) ? '&#10003;' : '');
110  $this->tpl->setVariable("USED_CLASS", ($data['used']) ? ' smallgreen' : ' smallred');
111  $this->tpl->setVariable("DATE", ilDatePresentation::formatDate(new ilDateTime($data['date'], IL_CAL_UNIX)));
112  $this->tpl->setVariable("CODE", $data['code']);
113  $this->tpl->setVariable("EMAIL", $data['email']);
114  $this->tpl->setVariable("LAST_NAME", $data['last_name']);
115  $this->tpl->setVariable("FIRST_NAME", $data['first_name']);
116  }
117 }
118 ?>
__construct($a_parent_obj, $a_parent_cmd)
Constructor.
setFormName($a_formname)
Set Form name.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
addCommandButtonInstance(ilButtonBase $a_button)
Add Command button instance.
const IL_CAL_UNIX
global $ilCtrl
Definition: ilias.php:18
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
Class ilTable2GUI.
addMultiCommand($a_cmd, $a_text)
Add Command button.
static formatDate(ilDateTime $date)
Format a date public.
setPrefix($a_prefix)
Date and time handling
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
global $lng
Definition: privfeed.php:40
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
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.