4 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
26 $lng = $DIC->language();
27 $access = $DIC->access();
29 $this->
setId(
"registration_code");
35 if (
$c ==
"role_local" ||
$c ==
"alimit") {
45 $this->
setRowTemplate(
"tpl.code_list_row.html",
"Services/Registration");
56 if($access->checkAccess(
"write",
'', $a_parent_obj->ref_id)) {
72 $rbacreview = $DIC[
'rbacreview'];
73 $ilObjDataCache = $DIC[
'ilObjDataCache'];
77 include_once(
"./Services/Registration/classes/class.ilRegistrationCode.php");
89 $this->filter[
"code"],
90 $this->filter[
"role"],
91 $this->filter[
"generated"],
92 $this->filter[
"alimit"]
95 if (count($codes_data[
"set"]) == 0 && $this->
getOffset() > 0) {
102 $this->filter[
"code"],
103 $this->filter[
"role"],
104 $this->filter[
"generated"],
105 $this->filter[
"alimit"]
109 include_once
'./Services/AccessControl/classes/class.ilObjRole.php';
111 foreach ($rbacreview->getGlobalRoles() as $role_id) {
112 if (!in_array($role_id, array(SYSTEM_ROLE_ID, ANONYMOUS_ROLE_ID))) {
113 $role_map[$role_id] = $ilObjDataCache->lookupTitle($role_id);
118 foreach ($codes_data[
"set"] as $k => $code) {
119 $result[$k][
"code"] = $code[
"code"];
120 $result[$k][
"code_id"] = $code[
"code_id"];
129 $result[$k][
"role"] = $this->role_map[$code[
"role"]];
132 if ($code[
"role_local"]) {
134 foreach (explode(
";", $code[
"role_local"]) as $role_id) {
140 if (
sizeof($local)) {
142 $result[$k][
"role_local"] = implode(
"<br />", $local);
146 if ($code[
"alimit"]) {
147 switch ($code[
"alimit"]) {
149 $result[$k][
"alimit"] = $this->lng->txt(
"reg_access_limitation_none");
153 $result[$k][
"alimit"] = $this->lng->txt(
"reg_access_limitation_mode_absolute_target") .
158 $limit_caption = array();
159 $limit = unserialize($code[
"alimitdt"]);
161 $limit_caption[] = (int) $limit[
"d"] .
" " . $this->lng->txt(
"days");
163 if ((
int) $limit[
"m"]) {
164 $limit_caption[] = (int) $limit[
"m"] .
" " . $this->lng->txt(
"months");
166 if ((
int) $limit[
"y"]) {
167 $limit_caption[] = (int) $limit[
"y"] .
" " . $this->lng->txt(
"years");
169 if (
sizeof($limit_caption)) {
170 $result[$k][
"alimit"] = $this->lng->txt(
"reg_access_limitation_mode_relative_target") .
171 ": " . implode(
", ", $limit_caption);
191 $rbacreview = $DIC[
'rbacreview'];
193 $ilObjDataCache = $DIC[
'ilObjDataCache'];
195 include_once(
"./Services/Registration/classes/class.ilRegistrationCode.php");
198 include_once(
"./Services/Form/classes/class.ilTextInputGUI.php");
202 $ti->setSubmitFormOnEnter(
true);
204 $ti->readFromSession();
205 $this->filter[
"code"] = $ti->getValue();
209 $this->role_map = array();
210 foreach ($rbacreview->getGlobalRoles() as $role_id) {
211 if (!in_array($role_id, array(SYSTEM_ROLE_ID, ANONYMOUS_ROLE_ID))) {
212 $this->role_map[$role_id] = $ilObjDataCache->lookupTitle($role_id);
216 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
217 include_once
'./Services/AccessControl/classes/class.ilObjRole.php';
218 $options = array(
"" => $this->lng->txt(
"registration_roles_all")) +
221 $si->setOptions($options);
223 $si->readFromSession();
224 $this->filter[
"role"] = $si->getValue();
227 $options = array(
"" => $this->lng->txt(
"registration_codes_access_limitation_all"),
228 "unlimited" => $this->lng->txt(
"reg_access_limitation_none"),
229 "absolute" => $this->lng->txt(
"reg_access_limitation_mode_absolute"),
230 "relative" => $this->lng->txt(
"reg_access_limitation_mode_relative"));
231 $si =
new ilSelectInputGUI($this->lng->txt(
"reg_access_limitations"),
"alimit");
232 $si->setOptions($options);
234 $si->readFromSession();
235 $this->filter[
"alimit"] = $si->getValue();
238 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
239 $options = array(
"" => $this->lng->txt(
"registration_generated_all"));
243 $si =
new ilSelectInputGUI($this->lng->txt(
"registration_generated"),
"generated");
244 $si->setOptions($options);
246 $si->readFromSession();
247 $this->filter[
"generated"] = $si->getValue();
252 return array(
"code" =>
"registration_code",
253 "role" =>
"registration_codes_roles",
254 "role_local" =>
"registration_codes_roles_local",
255 "alimit" =>
"reg_access_limitations",
256 "generated" =>
"registration_generated",
257 "used" =>
"registration_used");
262 $this->tpl->setVariable(
"ID", $code[
"code_id"]);
264 $this->tpl->setVariable(
"VAL_" . strtoupper($c), $code[$c]);
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
setExternalSorting($a_val)
Set external sorting.
getDefaultOrderField()
Get Default order field.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
static getCodesData($order_field, $order_direction, $offset, $limit, $filter_code, $filter_role, $filter_generated, $filter_access_limitation)
setExternalSegmentation($a_val)
Set external segmentation.
static getGenerationDates()
resetOffset($a_in_determination=false)
Reset offset.
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
static _lookupTitle($a_id)
lookup object title
getOrderDirection()
Get order direction.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
getItems()
Get user items.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setOrderField($a_order_field)
set order column
setTopCommands($a_val)
Set top commands (display command buttons on top of table, too)
setResetCommand($a_val, $a_caption=null)
Set reset filter command.
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.
TableGUI class for registration codes.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
setRowTemplate($a_template, $a_template_dir="")
Set row template.
determineOffsetAndOrder($a_omit_offset=false)
Determine offset and order.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct($a_parent_obj, $a_parent_cmd)
Constructor.
__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.
setEnableHeader($a_enableheader)
Set Enable Header.
setMaxCount($a_max_count)
set max.
setEnableTitle($a_enabletitle)
Set Enable Title.
setFilterCommand($a_val, $a_caption=null)
Set filter command.