24 $lng = $DIC->language();
33 $this->
addColumn($this->lng->txt(
"survey_code"),
'code',
'');
34 $this->
addColumn($this->lng->txt(
"email"),
'email',
'');
35 $this->
addColumn($this->lng->txt(
"lastname"),
'last_name',
'');
36 $this->
addColumn($this->lng->txt(
"firstname"),
'first_name',
'');
37 $this->
addColumn($this->lng->txt(
"create_date"),
'date',
'');
38 $this->
addColumn($this->lng->txt(
"survey_code_used"),
'used',
'');
39 $this->
addColumn($this->lng->txt(
"mail_sent_short"),
'sent',
'');
40 $this->
addColumn($this->lng->txt(
"survey_code_url"));
42 $this->
setRowTemplate(
"tpl.il_svy_svy_codes_row.html",
"Modules/Survey");
46 $this->
addMultiCommand(
'deleteCodesConfirm', $this->lng->txt(
'delete'));
48 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
51 $button->setCaption(
"export_all_survey_codes");
52 $button->setCommand(
"exportAllCodes");
53 $button->setOmitPreventDoubleSubmission(
true);
74 $this->tpl->setVariable(
'CB_CODE',
$data[
'id']);
77 if (strlen(
$data[
'href'])) {
78 $this->tpl->setCurrentBlock(
'url');
79 $this->tpl->setVariable(
"URL",
$lng->txt(
"survey_code_url_name"));
80 $this->tpl->setVariable(
"HREF",
$data[
'href']);
81 $this->tpl->parseCurrentBlock();
84 $this->tpl->setVariable(
"USED", (
$data[
'used']) ?
$lng->txt(
"used") :
$lng->txt(
"not_used"));
85 $this->tpl->setVariable(
"SENT", (
$data[
'sent']) ?
'✓' :
'');
86 $this->tpl->setVariable(
"USED_CLASS", (
$data[
'used']) ?
' smallgreen' :
' smallred');
88 $this->tpl->setVariable(
"CODE",
$data[
'code']);
89 $this->tpl->setVariable(
"EMAIL",
$data[
'email']);
90 $this->tpl->setVariable(
"LAST_NAME",
$data[
'last_name']);
91 $this->tpl->setVariable(
"FIRST_NAME",
$data[
'first_name']);
__construct($a_parent_obj, $a_parent_cmd)
Constructor.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
addCommandButtonInstance(ilButtonBase $a_button)
Add Command button instance.
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.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
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.