4 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
24 $this->
setId(
"user_account_code");
26 parent::__construct($a_parent_obj, $a_parent_cmd);
29 $this->
addColumn($lng->txt(
"user_account_code"),
"code");
30 $this->
addColumn($lng->txt(
"user_account_code_valid_until"),
"valid_until");
31 $this->
addColumn($lng->txt(
"user_account_code_generated"),
"generated");
32 $this->
addColumn($lng->txt(
"user_account_code_used"),
"used");
37 $this->
setFormAction($ilCtrl->getFormAction($this->parent_obj,
"listCodes"));
50 $this->
addCommandButton(
"exportCodes", $lng->txt(
"user_account_codes_export"));
60 global
$lng, $rbacreview, $ilObjDataCache;
64 include_once(
"./Services/User/classes/class.ilAccountCode.php");
71 $this->filter[
"code"],
72 $this->filter[
"valid_until"],
73 $this->filter[
"generated"]
76 if (count($codes_data[
"set"]) == 0 && $this->
getOffset() > 0)
84 $this->filter[
"code"],
85 $this->filter[
"valid_until"],
86 $this->filter[
"generated"]
91 foreach ($codes_data[
"set"] as $k => $code)
104 if($code[
"valid_until"] ===
"0")
106 $valid = $lng->txt(
"user_account_code_valid_until_unlimited");
108 else if(is_numeric($code[
"valid_until"]))
110 $valid = $code[
"valid_until"].
" ".($code[
"valid_until"] == 1 ? $lng->txt(
"day") : $lng->txt(
"days"));
118 $result[$k][
"code"] = $code[
"code"];
119 $result[$k][
"code_id"] = $code[
"code_id"];
134 include_once(
"./Services/User/classes/class.ilAccountCode.php");
137 include_once(
"./Services/Form/classes/class.ilTextInputGUI.php");
138 $ti =
new ilTextInputGUI($lng->txt(
"user_account_code"),
"query");
141 $ti->setSubmitFormOnEnter(
true);
143 $ti->readFromSession();
144 $this->filter[
"code"] = $ti->getValue();
147 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
148 $options = array(
"" => $lng->txt(
"user_account_code_generated_all"));
156 $si->readFromSession();
157 $this->filter[
"generated"] =
$si->getValue();
165 $this->tpl->setVariable(
"ID", $code[
"code_id"]);
166 $this->tpl->setVariable(
"VAL_CODE", $code[
"code"]);
167 $this->tpl->setVariable(
"VAL_VALID_UNTIL", $code[
"valid_until"]);
168 $this->tpl->setVariable(
"VAL_GENERATED", $code[
"generated"]);
169 $this->tpl->setVariable(
"VAL_USED", $code[
"used"]);
setExternalSorting($a_val)
Set external sorting.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setFilterCommand($a_val)
Set filter command.
setExternalSegmentation($a_val)
Set external segmentation.
resetOffset($a_in_determination=false)
Reset offset.
static getGenerationDates()
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
TableGUI class for account codes.
getOrderDirection()
Get order direction.
static getCodesData($order_field, $order_direction, $offset, $limit, $filter_code, $filter_valid_until, $filter_generated)
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
getItems()
Get user items.
setTopCommands($a_val)
Set top commands (display command buttons on top of table, too)
if(!is_array($argv)) $options
fillRow($code)
Fill table row.
__construct($a_parent_obj, $a_parent_cmd)
Constructor.
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="")
Add a column to the header.
addMultiCommand($a_cmd, $a_text)
Add Command button.
This class represents a text property in a property form.
static formatDate(ilDateTime $date)
Format a date public.
setMaxLength($a_maxlength)
Set Max Length.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="")
Add Command button.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
determineOffsetAndOrder($a_omit_offset=false)
Determine offset and order.
setFormAction($a_form_action)
Set Form action parameter.
setEnableHeader($a_enableheader)
Set Enable Header.
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
setMaxCount($a_max_count)
set max.
setEnableTitle($a_enabletitle)
Set Enable Title.
setResetCommand($a_val)
Set reset filter command.