18 declare(strict_types=1);
56 public function __construct(
int $a_ref_id,
int $a_type = self::EXPORT_CSV)
60 $ilObjDataCache = $DIC[
'ilObjDataCache'];
62 $this->
lng = $DIC->language();
63 $this->tree = $DIC->repositoryTree();
64 $this->
access = $DIC->access();
66 $this->export_type = $a_type;
67 $this->ref_id = $a_ref_id;
68 $this->obj_id = $ilObjDataCache->lookupObjId($this->ref_id);
85 return $this->
access->filterUserIdsByRbacOrPositionOfCurrentUser(
95 $this->filename = $a_file;
127 case self::EXPORT_CSV:
131 case self::EXPORT_EXCEL:
140 return $this->csv->getCSVString();
147 $this->worksheet =
new ilExcel();
148 $this->worksheet->addSheet($this->
lng->txt(
"members"));
151 $this->worksheet->writeToFile($this->
getFilename());
163 protected function addCol(
string $a_value,
int $a_row,
int $a_col): void
166 case self::EXPORT_CSV:
167 $this->csv->addColumn($a_value);
170 case self::EXPORT_EXCEL:
171 $this->worksheet->setCell($a_row + 1, $a_col, $a_value);
179 case self::EXPORT_CSV:
180 $this->csv->addRow();
183 case self::EXPORT_EXCEL:
191 $field_info->sortExportFields();
196 $fields[] =
'agreement';
199 foreach ($field_info->getExportableFields() as $field) {
200 if ($this->
settings->enabled($field)) {
206 foreach ($udf->getCourseExportableFields() as $field_id => $udf_data) {
207 if ($this->
settings->enabled(
'udf_' . $field_id)) {
208 $fields[] =
'udf_' . $field_id;
214 if ($this->
settings->enabled(
'cdf_' . $field_obj->getId())) {
215 $fields[] =
'cdf_' . $field_obj->getId();
218 if ($this->
settings->enabled(
'group_memberships')) {
219 $fields[] =
'crs_members_groups';
232 $this->
addCol($this->
lng->txt($this->getType() .
'_role_status'), $row, $col++);
235 $this->
addCol($this->
lng->txt(
'ps_agreement_accepted'), $row, $col++);
237 case 'consultation_hour':
238 $this->
lng->loadLanguageModule(
'dateplaner');
239 $this->
addCol($this->
lng->txt(
'cal_ch_field_ch'), $row, $col++);
243 $this->
addCol($this->
lng->txt(
'org_units'), $row, $col++);
247 if (strpos($field,
'udf_') === 0) {
248 $field_id = explode(
'_', $field);
250 $def = $udf->getDefinition((
int) $field_id[1]);
251 #$this->csv->addColumn($def['field_name']); 252 $this->
addCol($def[
'field_name'], $row, $col++);
253 } elseif (strpos($field,
'cdf_') === 0) {
254 $field_id = explode(
'_', $field);
255 #$this->csv->addColumn(ilCourseDefinedFieldDefinition::_lookupName($field_id[1])); 257 } elseif ($field ===
"username") {
258 $this->
addCol($this->
lng->txt(
"login"), $row, $col++);
260 #$this->csv->addColumn($this->lng->txt($field)); 261 $this->
addCol($this->
lng->txt($field), $row, $col++);
268 foreach ($this->user_ids as $usr_id) {
271 $usr_id = (
int) $usr_id;
274 foreach ($all_fields as $field) {
288 switch ($this->user_course_data[$usr_id][
'role'] ??
'') {
290 $this->
addCol($this->
lng->txt(
'crs_admin'), $row, $col++);
294 $this->
addCol($this->
lng->txt(
'crs_tutor'), $row, $col++);
298 $this->
addCol($this->
lng->txt(
'crs_member'), $row, $col++);
302 $this->
addCol($this->
lng->txt(
'il_grp_admin'), $row, $col++);
306 $this->
addCol($this->
lng->txt(
'il_grp_member'), $row, $col++);
310 $this->
addCol($this->
lng->txt($this->getType() .
'_subscriber'), $row, $col++);
314 $this->
addCol($this->
lng->txt(
'crs_waiting_list'), $row, $col++);
320 if (isset($this->agreement[$usr_id])) {
321 if ($this->agreement[$usr_id][
'accepted']) {
325 $this->
addCol($this->
lng->txt(
'ps_not_accepted'), $row, $col++);
328 $this->
addCol($this->
lng->txt(
'ps_not_accepted'), $row, $col++);
334 $this->
addCol($this->user_profile_data[$usr_id][
'login'], $row, $col++);
339 $this->
addCol($this->user_profile_data[$usr_id][$field], $row, $col++);
342 case 'consultation_hour':
349 foreach ((array) $bookings[$usr_id] as $ut) {
355 if (strlen($ut[
'explanation'])) {
356 $tmp .=
' ' . $ut[
'explanation'];
360 $uts_str = implode(
',', $uts);
361 $this->
addCol($uts_str, $row, $col++);
363 case 'crs_members_groups':
366 foreach (array_keys($this->groups) as $grp_ref) {
367 if (in_array($usr_id, $this->groups_participants[$grp_ref])
368 && $this->groups_rights[$grp_ref]) {
369 $groups[] = $this->groups[$grp_ref];
372 $this->
addCol(implode(
", ", $groups), $row, $col++);
382 !$this->privacy->courseConfirmationRequired() or
383 (isset($this->agreement[$usr_id][
'accepted']) &&
384 $this->agreement[$usr_id][
'accepted'])
386 #$this->csv->addColumn($this->user_profile_data[$usr_id][$field]); 387 $this->
addCol($this->user_profile_data[$usr_id][$field] ??
'', $row, $col++);
389 #$this->csv->addColumn(''); 390 $this->
addCol(
'', $row, $col++);
403 if ($this->
settings->enabled(
'admin')) {
404 $this->user_ids = $tmp_ids = $this->members->getAdmins();
407 if ($this->
settings->enabled(
'tutor')) {
408 $this->user_ids = array_merge($tmp_ids = $this->members->getTutors(),
$this->user_ids);
411 if ($this->
settings->enabled(
'member')) {
412 $this->user_ids = array_merge($tmp_ids = $this->members->getMembers(),
$this->user_ids);
415 if ($this->
settings->enabled(
'subscribers')) {
416 $this->user_ids = array_merge($tmp_ids = $this->members->getSubscribers(),
$this->user_ids);
419 if ($this->
settings->enabled(
'waiting_list')) {
421 $this->user_ids = array_merge($waiting_list->getUserIds(),
$this->user_ids);
423 $this->user_ids = $this->
filterUsers($this->user_ids);
426 $this->user_ids =
ilUtil::_sortIds($this->user_ids,
'usr_data',
'lastname',
'usr_id');
441 if ($this->members->isAdmin($user_id)) {
443 } elseif ($this->members->isTutor($user_id)) {
445 } elseif ($this->members->isMember($user_id)) {
448 $this->user_course_data[
$user_id][
'role'] =
'subscriber';
461 private function addCourseField(
int $a_usr_id,
string $a_field,
int $row,
int $col): bool
463 if (strpos($a_field,
'cdf_') !== 0) {
467 !$this->privacy->courseConfirmationRequired() ||
468 ($this->agreement[$a_usr_id][
'accepted'] ??
false)
470 $field_info = explode(
'_', $a_field);
471 $field_id = $field_info[1] ?? 0;
473 if (isset($this->user_course_fields[$a_usr_id][$field_id])) {
474 $value = $this->user_course_fields[$a_usr_id][$field_id];
476 $this->
addCol((
string) $value, $row, $col);
479 #$this->csv->addColumn(''); 480 $this->
addCol(
'', $row, $col);
489 if (strpos($a_field,
'udf_') !== 0) {
494 !$this->privacy->courseConfirmationRequired() ||
495 (isset($this->agreement[$udf_data->
getUserId()][
'accepted']) &&
496 $this->agreement[$udf_data->
getUserId()][
'accepted'])
498 $field_info = explode(
'_', $a_field);
499 $field_id = $field_info[1];
500 $value = $udf_data->
get(
'f_' . $field_id);
501 #$this->csv->addColumn($value); 502 $this->
addCol($value, $row, $col);
506 $this->
addCol(
'', $row, $col);
515 if ($this->
getType() ===
'crs') {
518 if ($this->
getType() ===
'grp') {
525 $parent_node = $this->tree->getNodeData($this->ref_id);
526 $groups = $this->tree->getSubTree($parent_node,
true, [
'grp']);
527 if (is_array($groups) && count($groups)) {
528 $this->groups_rights = [];
529 foreach ($groups as $idx => $group_data) {
532 $group_data[
"parent"] != $this->ref_id &&
533 $this->tree->checkForParentType((
int) $group_data[
"ref_id"],
"grp",
true)
535 unset($groups[$idx]);
537 $this->groups[$group_data[
"ref_id"]] = $group_data[
"title"];
539 $this->groups_rights[$group_data[
"ref_id"]] =
540 $this->
access->checkAccess(
"write",
"", (
int) $group_data[
"ref_id"]);
542 $this->groups_participants[$group_data[
"ref_id"]] = $gobj->getParticipants();
__construct(int $a_ref_id, int $a_type=self::EXPORT_CSV)
static array static setUseRelativeDates(bool $a_status)
set use relative dates
Class for generation of member export files.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getOrderedExportableFields()
static _lookupName(int $a_field_id)
courseConfirmationRequired()
array $groups_participants
readCourseSpecificFieldsData()
static _getValuesByObjId(int $a_obj_id)
ilUserFormSettings $settings
static _getFields(int $a_container_id, $a_sort=self::IL_CDF_SORT_NAME)
Get all fields of a container.
static lookupOrgUnitsRepresentation(int $a_usr_id)
lookup org unit representation
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addUserDefinedField(ilUserDefinedData $udf_data, string $a_field, int $row, int $col)
Add user defined fields.
static _getInstanceByObjId(int $a_obj_id)
setFilename(string $a_file)
ilPrivacySettings $privacy
readCourseData(array $a_user_ids)
Read All User related course data.
Singleton class that stores all privacy settings.
addCol(string $a_value, int $a_row, int $a_col)
Write one column.
static lookupManagedBookingsForObject(int $a_obj_id, int $a_usr_id)
Lookup bookings for own and managed consultation hours of an object.
static _sortIds(array $a_ids, string $a_table, string $a_field, string $a_id_name)
Function that sorts ids by a given table field using WHERE IN E.g: __sort(array(6,7),'usr_data','lastname','usr_id') => sorts by lastname.
Base class for course and group participants.
array $user_course_fields
static _getInstanceByType(string $a_type)
Get Singleton Instance.
filterUsers(array $a_usr_ids)
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
static _readUsersProfileData(array $a_user_ids)
static _readByObjId(int $a_obj_id)
Read user data by object id.
addCourseField(int $a_usr_id, string $a_field, int $row, int $col)
Fill course specific fields.
initMembers()
Init member object.
static _lookupType(int $id, bool $reference=false)
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false, ?ilObjUser $user=null)
Format a period of two dates Shows: 14.