4 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
39 public function __construct($a_parent_obj, $a_parent_cmd, $a_mode = self::MODE_USER_FOLDER, $a_load_items =
true)
44 $lng = $DIC->language();
46 $this->logger = $DIC->logger()->usr();
48 $this->user_folder_id = $a_parent_obj->object->getRefId();
58 $this->
addColumn($this->lng->txt(
"login"),
"login");
69 if ($this->
getMode() == self::MODE_LOCAL_USER) {
70 $this->
addColumn($this->lng->txt(
'context'),
'time_limit_owner');
71 $this->
addColumn($this->lng->txt(
'role_assignment'));
92 if ($this->
getMode() == self::MODE_USER_FOLDER) {
95 $cmds = $a_parent_obj->getUserMultiCommands();
96 foreach ($cmds as $cmd => $caption) {
110 $this->mode = $a_mode;
128 include_once
'./Services/User/classes/class.ilUserDefinedFields.php';
130 foreach ($user_defined_fields->getDefinitions() as $field => $definition) {
131 $this->udf_fields[
"udf_" . $field] = array(
132 "txt" => $definition[
"field_name"],
134 "options" => $definition[
"field_values"],
135 "type" => $definition[
"field_type"],
148 if (isset($this->udf_fields[$a_key])) {
149 return $this->udf_fields[$a_key];
161 if (substr($a_key, 0, 4) ==
"udf_") {
180 include_once(
"./Services/User/classes/class.ilUserProfile.php");
182 $up->skipGroup(
"preferences");
183 $up->skipGroup(
"interests");
184 $up->skipGroup(
"settings");
190 $cols[
"firstname"] = array(
191 "txt" =>
$lng->txt(
"firstname"),
193 $cols[
"lastname"] = array(
194 "txt" =>
$lng->txt(
"lastname"),
196 if ($this->
getMode() == self::MODE_USER_FOLDER) {
197 $ufs = $up->getStandardFields();
199 $cols[
"access_until"] = array(
200 "txt" =>
$lng->txt(
"access_until"),
202 $cols[
"last_login"] = array(
203 "txt" =>
$lng->txt(
"last_login"),
207 $cols[
"create_date"] = array(
208 "txt" =>
$lng->txt(
"create_date"));
209 $cols[
"approve_date"] = array(
210 "txt" =>
$lng->txt(
"approve_date"));
211 $cols[
"agree_date"] = array(
212 "txt" =>
$lng->txt(
"agree_date"));
214 $ufs = $up->getLocalUserAdministrationFields();
218 if (isset($ufs[
"email"])) {
219 $cols[
"email"] = array(
220 "txt" =>
$lng->txt(
"email"),
223 if (isset($ufs[
"second_email"])) {
224 $cols[
"second_email"] = array(
225 "txt" =>
$lng->txt(
"second_email"),
229 foreach ($ufs as
$f => $fd) {
230 if (!isset($cols[
$f]) && !$fd[
"lists_hide"]) {
232 $caption = $fd[
"lang_var"]
236 "txt" =>
$lng->txt($caption),
245 $cols[
"auth_mode"] = array(
246 "txt" =>
$lng->txt(
"auth_mode"),
251 if ($this->
getMode() == self::MODE_USER_FOLDER) {
252 foreach ($this->udf_fields as $k => $field) {
258 unset($cols[
"username"]);
273 if ($this->
getMode() == self::MODE_USER_FOLDER) {
275 include_once
'./Services/User/classes/class.ilLocalUser.php';
278 if ($this->filter[
'time_limit_owner']) {
279 $user_filter = array($this->filter[
'time_limit_owner']);
282 include_once
'./Services/User/classes/class.ilLocalUser.php';
290 if (!count($user_filter)) {
296 if (is_array($this->filter[
'user_ids']) && !count($this->filter[
'user_ids'])) {
303 unset($additional_fields[
"firstname"]);
304 unset($additional_fields[
"lastname"]);
305 unset($additional_fields[
"email"]);
306 unset($additional_fields[
"second_email"]);
307 unset($additional_fields[
"last_login"]);
308 unset($additional_fields[
"access_until"]);
309 unset($additional_fields[
'org_units']);
311 $udf_filter = array();
312 foreach ($this->filter as $k => $v) {
313 if (substr($k, 0, 4) ==
"udf_") {
314 $udf_filter[$k] = $v;
320 if (substr($order_field, 0, 4) !=
"udf_" || isset($additional_fields[$order_field])) {
321 $query->setOrderField($order_field);
326 $query->setTextFilter($this->filter[
'query']);
327 $query->setActionFilter($this->filter[
'activation']);
328 $query->setLastLogin($this->filter[
'last_login']);
329 $query->setLimitedAccessFilter($this->filter[
'limited_access']);
330 $query->setNoCourseFilter($this->filter[
'no_courses']);
331 $query->setNoGroupFilter($this->filter[
'no_groups']);
332 $query->setCourseGroupFilter($this->filter[
'course_group']);
333 $query->setRoleFilter($this->filter[
'global_role']);
334 $query->setAdditionalFields($additional_fields);
335 $query->setUserFolder($user_filter);
336 $query->setUserFilter($this->filter[
'user_ids']);
337 $query->setUdfFilter($udf_filter);
339 $query->setAuthenticationFilter($this->filter[
'authentication']);
340 $usr_data =
$query->query();
342 if (count($usr_data[
"set"]) == 0 && $this->
getOffset() > 0) {
345 $usr_data =
$query->query();
348 foreach ($usr_data[
"set"] as $k => $user) {
354 $current_time = time();
355 if ($user[
'active']) {
356 if ($user[
"time_limit_unlimited"]) {
357 $txt_access =
$lng->txt(
"access_unlimited");
358 $usr_data[
"set"][$k][
"access_class"] =
"smallgreen";
359 } elseif ($user[
"time_limit_until"] < $current_time) {
360 $txt_access =
$lng->txt(
"access_expired");
361 $usr_data[
"set"][$k][
"access_class"] =
"smallred";
364 $usr_data[
"set"][$k][
"access_class"] =
"small";
367 $txt_access =
$lng->txt(
"inactive");
368 $usr_data[
"set"][$k][
"access_class"] =
"smallred";
370 $usr_data[
"set"][$k][
"access_until"] = $txt_access;
374 $this->
setData($usr_data[
"set"]);
379 $this->filter[
$filter] = $value;
384 if ($this->
getMode() == self::MODE_USER_FOLDER) {
386 include_once
'./Services/User/classes/class.ilLocalUser.php';
389 if ($this->filter[
'time_limit_owner']) {
390 $user_filter = array($this->filter[
'time_limit_owner']);
393 include_once
'./Services/User/classes/class.ilLocalUser.php';
398 if (!isset($this->filter[
'user_ids'])) {
399 $this->filter[
'user_ids'] = array();
400 $this->filter[
'user_ids'] = null;
403 include_once(
"./Services/User/classes/class.ilUserQuery.php");
408 $query->setTextFilter($this->filter[
'query']);
409 $query->setActionFilter($this->filter[
'activation']);
410 $query->setAuthenticationFilter($this->filter[
'authentication']);
411 $query->setLastLogin($this->filter[
'last_login']);
412 $query->setLimitedAccessFilter($this->filter[
'limited_access']);
413 $query->setNoCourseFilter($this->filter[
'no_courses']);
414 $query->setNoGroupFilter($this->filter[
'no_groups']);
415 $query->setCourseGroupFilter($this->filter[
'course_group']);
416 $query->setRoleFilter($this->filter[
'global_role']);
417 $query->setUserFolder($user_filter);
418 $query->setUserFilter($this->filter[
'user_ids']);
426 $usr_data =
$query->query();
429 foreach ($usr_data[
"set"] as $item) {
431 if ($item[
"usr_id"] != SYSTEM_USER_ID) {
432 $user_ids[] = $item[
"usr_id"];
447 $rbacreview = $DIC[
'rbacreview'];
453 if ($this->
getMode() == self::MODE_LOCAL_USER) {
454 include_once
'./Services/User/classes/class.ilLocalUser.php';
457 if (count($parent_ids) > 1) {
458 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
463 $opt[0] = $this->lng->txt(
'all_users');
466 foreach ($parent_ids as $parent_id) {
470 switch ($parent_id) {
480 $co->setOptions($opt);
482 $co->readFromSession();
483 $this->filter[
'time_limit_owner'] = $co->getValue();
488 include_once(
"./Services/Form/classes/class.ilTextInputGUI.php");
490 $lng->txt(
"name"),
"query");
491 $ul->setDataSource(
$ilCtrl->getLinkTarget(
492 $this->getParentObject(),
493 "addUserAutoComplete",
498 $ul->setSubmitFormOnEnter(
true);
500 $ul->readFromSession();
501 $this->filter[
"query"] = $ul->getValue();
515 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
517 "" =>
$lng->txt(
"user_all"),
518 "active" =>
$lng->txt(
"active"),
519 "inactive" =>
$lng->txt(
"inactive"),
522 $si->setOptions($options);
524 $si->readFromSession();
525 $this->filter[
"activation"] = $si->getValue();
528 include_once(
"./Services/Form/classes/class.ilCheckboxInputGUI.php");
529 $cb =
new ilCheckboxInputGUI($this->lng->txt(
"user_limited_access"),
"limited_access");
531 $cb->readFromSession();
532 $this->filter[
"limited_access"] = $cb->getChecked();
535 include_once(
"./Services/Form/classes/class.ilDateTimeInputGUI.php");
536 $di =
new ilDateTimeInputGUI($this->lng->txt(
"user_last_login_before"),
"last_login");
541 $di->readFromSession();
542 $this->filter[
"last_login"] = $di->getDate();
544 if ($this->
getMode() == self::MODE_USER_FOLDER) {
546 include_once(
"./Services/Form/classes/class.ilCheckboxInputGUI.php");
549 $cb->readFromSession();
550 $this->filter[
"no_courses"] = $cb->getChecked();
553 include_once(
"./Services/Form/classes/class.ilCheckboxInputGUI.php");
556 $ng->readFromSession();
557 $this->filter[
'no_groups'] = $ng->getChecked();
560 include_once(
"./Services/Form/classes/class.ilRepositorySelectorInputGUI.php");
562 $rs->setSelectText(
$lng->txt(
"user_select_course_group"));
563 $rs->setHeaderMessage(
$lng->txt(
"user_please_select_course_group"));
564 $rs->setClickableTypes(array(
"crs",
"grp"));
566 $rs->readFromSession();
567 $this->filter[
"course_group"] = $rs->getValue();
572 "" =>
$lng->txt(
"user_any"),
574 $roles = $rbacreview->getRolesByFilter(2,
$ilUser->getId());
575 foreach ($roles as $role) {
576 $options[$role[
"rol_id"]] = $role[
"title"];
578 $si =
new ilSelectInputGUI($this->lng->txt(
"user_global_role"),
"global_role");
579 $si->setOptions($options);
581 $si->readFromSession();
582 $this->filter[
"global_role"] = $si->getValue();
587 "" =>
$lng->txt(
"user_any"),
589 foreach ($auth_methods as $method => $value) {
590 if ($method ==
'default') {
596 $si =
new ilSelectInputGUI($this->lng->txt(
"auth_mode"),
"authentication_method");
597 $si->setOptions($options);
599 $si->readFromSession();
600 $this->filter[
"authentication"] = $si->getValue();
603 foreach ($this->udf_fields as $id =>
$f) {
624 $caption =
$lng->txt($id);
627 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
631 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
633 $sel_options = array(
"" => $this->lng->txt(
"user_all"));
634 foreach ($a_options as $o) {
635 $sel_options[$o] = $o;
637 $item->setOptions($sel_options);
641 include_once(
"./Services/Form/classes/class.ilTextInputGUI.php");
643 $item->setMaxLength(64);
654 $item->readFromSession();
655 $this->filter[$id] = $item->getValue();
670 $ilCtrl->setParameterByClass(
"ilobjusergui",
"letter",
$_GET[
"letter"]);
673 if ($c ==
"access_until") {
674 $this->tpl->setCurrentBlock(
"access_until");
675 $this->tpl->setVariable(
"VAL_ACCESS_UNTIL", $user[
"access_until"]);
676 $this->tpl->setVariable(
"CLASS_ACCESS_UNTIL", $user[
"access_class"]);
677 } elseif ($c ==
"last_login") {
678 $this->tpl->setCurrentBlock(
"last_login");
679 $this->tpl->setVariable(
683 } elseif (in_array($c, array(
"firstname",
"lastname"))) {
684 $this->tpl->setCurrentBlock($c);
685 $this->tpl->setVariable(
"VAL_" . strtoupper($c), (
string) $user[$c]);
686 } elseif ($c ==
'auth_mode') {
687 $this->tpl->setCurrentBlock(
'user_field');
689 $this->tpl->parseCurrentBlock();
691 $this->tpl->setCurrentBlock(
"user_field");
692 $val = (trim($user[$c]) ==
"")
695 if ($user[$c] !=
"") {
702 $val =
$lng->txt(
"gender_" . $user[$c]);
713 $this->tpl->setVariable(
"VAL_UF", $val);
716 $this->tpl->parseCurrentBlock();
719 if ($user[
"usr_id"] != 6) {
720 if ($this->
getMode() == self::MODE_USER_FOLDER or $user[
'time_limit_owner'] == $this->
getUserFolderId()) {
721 $this->tpl->setCurrentBlock(
"checkb");
722 $this->tpl->setVariable(
"ID", $user[
"usr_id"]);
723 $this->tpl->parseCurrentBlock();
727 if ($this->
getMode() == self::MODE_USER_FOLDER or $user[
'time_limit_owner'] == $this->
getUserFolderId()) {
728 $this->tpl->setVariable(
"VAL_LOGIN", $user[
"login"]);
729 $ilCtrl->setParameterByClass(
"ilobjusergui",
"obj_id", $user[
"usr_id"]);
730 $this->tpl->setVariable(
732 $ilCtrl->getLinkTargetByClass(
"ilobjusergui",
"view")
734 $ilCtrl->setParameterByClass(
"ilobjusergui",
"obj_id",
"");
736 $this->tpl->setVariable(
'VAL_LOGIN_PLAIN', $user[
'login']);
739 if ($this->
getMode() == self::MODE_LOCAL_USER) {
740 $this->tpl->setCurrentBlock(
'context');
742 $this->tpl->parseCurrentBlock();
744 $this->tpl->setCurrentBlock(
'roles');
746 $this->tpl->setVariable(
'ROLE_LINK',
$ilCtrl->getLinkTarget($this->getParentObject(),
'assignRoles'));
747 $this->tpl->setVariable(
'TXT_ROLES', $this->lng->txt(
'edit'));
749 $this->tpl->parseCurrentBlock();
getUserDefinedField($a_key)
Get user defined field.
setExternalSorting($a_val)
Set external sorting.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
static _getInstance()
Get instance.
addFilterItemValue($filter, $value)
setExternalSegmentation($a_val)
Set external segmentation.
resetOffset($a_in_determination=false)
Reset offset.
getSelectableColumns()
Get selectable columns.
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
static _lookupTitle($a_id)
lookup object title
static _getActiveAuthModes()
static getAuthModeTranslation($a_auth_key, $auth_name='')
getOrderDirection()
Get order direction.
static _getAuthMode($a_auth_mode, $a_db_handler='')
static _getAuthModeName($a_auth_key)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
getParentObject()
Get parent object.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
static lookupOrgUnitsRepresentation($a_usr_id)
lokup org unit representation
TableGUI class for user administration.
static _getFolderIds($access_with_orgunit=false)
setTopCommands($a_val)
Set top commands (display command buttons on top of table, too)
readUserDefinedFieldsDefinitions()
Read user defined fields definitions.
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.
static _lookupObjId($a_id)
addMultiCommand($a_cmd, $a_text)
Add Command button.
getSelectedColumns()
Get selected columns.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
setEnableAllCommand($a_value)
Enable actions for all entries in current result.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
isUdfColumn($a_key)
Field key.
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, $a_mode=self::MODE_USER_FOLDER, $a_load_items=true)
Constructor.
fillRow($user)
Fill table row.
__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.
const USER_FOLDER_ID
Class ilObjUserFolder.
setEnableHeader($a_enableheader)
Set Enable Header.
setMaxCount($a_max_count)
set max.
setEnableTitle($a_enabletitle)
Set Enable Title.
getItems()
Get user items.
addFilterItemByUdfType($id, $type, $a_optional=false, $caption=null, $a_options=array())
Add filter by standard type.
setFilterCommand($a_val, $a_caption=null)
Set filter command.