36 $ilCtrl = $DIC[
'ilCtrl'];
39 $this->
setId(
"user_account_code");
52 $this->
setFormAction($ilCtrl->getFormAction($this->parent_obj,
"listCodes"));
66 $button->setCaption(
"user_account_codes_export");
67 $button->setCommand(
"exportCodes");
68 $button->setOmitPreventDoubleSubmission(
true);
88 $this->
filter[
"valid_until"],
92 if (count($codes_data[
"set"]) == 0 && $this->
getOffset() > 0) {
100 $this->
filter[
"valid_until"],
101 $this->
filter[
"generated"]
106 foreach ($codes_data[
"set"] as $k => $code) {
112 $result[$k][
"used"] =
"";
115 if ($code[
"valid_until"] ===
"0") {
116 $valid =
$lng->
txt(
"user_account_code_valid_until_unlimited");
117 } elseif (is_numeric($code[
"valid_until"])) {
118 $valid = $code[
"valid_until"] .
" " . ($code[
"valid_until"] == 1 ?
$lng->
txt(
"day") :
$lng->
txt(
"days"));
122 $result[$k][
"valid_until"] =
$valid;
124 $result[$k][
"code"] = $code[
"code"];
125 $result[$k][
"code_id"] = $code[
"code_id"];
142 $ti->setSubmitFormOnEnter(
true);
144 $ti->readFromSession();
145 $this->
filter[
"code"] = $ti->getValue();
148 $options = array(
"" =>
$lng->
txt(
"user_account_code_generated_all"));
153 $si->setOptions($options);
155 $si->readFromSession();
156 $this->
filter[
"generated"] = $si->getValue();
162 protected function fillRow(array $a_set): void
164 $this->tpl->setVariable(
"ID", $a_set[
"code_id"]);
165 $this->tpl->setVariable(
"VAL_CODE", $a_set[
"code"]);
166 $this->tpl->setVariable(
"VAL_VALID_UNTIL", $a_set[
"valid_until"]);
167 $this->tpl->setVariable(
"VAL_GENERATED", $a_set[
"generated"]);
168 $this->tpl->setVariable(
"VAL_USED", $a_set[
"used"]);
setTopCommands(bool $a_val)
addCommandButtonInstance(ilButtonBase $a_button)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
setEnableTitle(bool $a_enabletitle)
setResetCommand(string $a_val, string $a_caption="")
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static getGenerationDates()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
resetOffset(bool $a_in_determination=false)
setExternalSorting(bool $a_val)
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
setDefaultOrderDirection(string $a_defaultorderdirection)
static getCodesData(string $order_field, string $order_direction, int $offset, int $limit, string $filter_code, string $filter_valid_until, string $filter_generated)
__construct(object $a_parent_obj, string $a_parent_cmd)
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
addMultiCommand(string $a_cmd, string $a_text)
determineOffsetAndOrder(bool $a_omit_offset=false)
setEnableHeader(bool $a_enableheader)
setMaxCount(int $a_max_count)
set max.
setExternalSegmentation(bool $a_val)