27 $lng = $DIC->language();
28 $ilCtrl = $DIC->ctrl();
31 $this->ctrl = $ilCtrl;
36 $this->
setStyle(
'table',
'fullwidth');
41 $this->
addColumn($this->lng->txt(
"name"),
'name',
'');
42 $this->
addColumn($this->lng->txt(
"login"),
'login',
'');
43 $this->
addColumn($this->lng->txt(
"last_access"),
'last_access',
'');
44 $this->
addColumn($this->lng->txt(
"workingtime"),
'workingtime',
'');
45 $this->
addColumn($this->lng->txt(
"svy_status"),
'',
'');
46 $this->
addColumn($this->lng->txt(
"survey_results_finished"),
'finished',
'');
48 $this->
setRowTemplate(
"tpl.il_svy_svy_maintenance_row.html",
"Modules/Survey/Participants");
51 $this->
addCommandButton(
'confirmDeleteSelectedUserData', $this->lng->txt(
'confirm'));
52 $this->
addCommandButton(
'cancelDeleteSelectedUserData', $this->lng->txt(
'cancel'));
54 $this->
addMultiCommand(
'deleteSingleUserResults', $this->lng->txt(
'svy_remove_participants'));
57 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
71 $this->
enable(
'select_all');
85 if (!$this->confirmdelete) {
86 $this->tpl->setCurrentBlock(
'checkbox');
87 if (
$data[
"invited"]) {
88 $this->tpl->setVariable(
"CB_USER_ID",
"inv" .
$data[
'usr_id']);
90 $this->tpl->setVariable(
"CB_USER_ID",
$data[
'id']);
92 $this->tpl->parseCurrentBlock();
94 $this->tpl->setCurrentBlock(
'hidden');
95 if (
$data[
"invited"]) {
96 $this->tpl->setVariable(
"HIDDEN_USER_ID",
"inv" .
$data[
'usr_id']);
98 $this->tpl->setVariable(
"HIDDEN_USER_ID",
$data[
'id']);
100 $this->tpl->parseCurrentBlock();
102 $this->tpl->setVariable(
"USER_ID",
$data[
"id"]);
103 $this->tpl->setVariable(
"VALUE_USER_NAME",
$data[
'name']);
104 $this->tpl->setVariable(
"VALUE_USER_LOGIN",
$data[
'login']);
106 $this->tpl->setVariable(
"WORKINGTIME", $this->
formatTime(
$data[
'workingtime']));
108 $state = $this->lng->txt(
"svy_status_in_progress");
109 if (
$data[
'last_access'] ==
"" &&
$data[
"invited"]) {
110 $state = $this->lng->txt(
"svy_status_invited");
112 if (
$data[
"finished"] !==
false) {
113 $state = $this->lng->txt(
"svy_status_finished");
115 $this->tpl->setVariable(
"STATUS", $state);
117 if (
$data[
"finished"] !== null) {
118 if (
$data[
"finished"] !==
false) {
123 $this->tpl->setVariable(
"FINISHED", $finished);
125 $this->tpl->setVariable(
"FINISHED",
" ");
131 if (is_null($timeinseconds)) {
133 } elseif ($timeinseconds == 0) {
134 return $this->lng->txt(
'not_available');
136 return sprintf(
"%02d:%02d:%02d", ($timeinseconds / 3600), ($timeinseconds / 60) % 60, $timeinseconds % 60);
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
__construct($a_parent_obj, $a_parent_cmd, $confirmdelete=false)
Constructor.
numericOrdering($a_field)
public
setStyle($a_element, $a_style)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
addMultiCommand($a_cmd, $a_text)
Add Command button.
enable($a_module_name)
enables particular modules of table
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
disable($a_module_name)
diesables particular modules of table
setFormName($a_formname="")
Set Form name.
__construct(Container $dic, ilPlugin $plugin)
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.
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
formatTime($timeinseconds)