23 include_once(
'Services/PrivacySecurity/classes/class.ilPrivacySettings.php');
24 include_once(
'Services/Membership/classes/class.ilMemberAgreement.php');
25 include_once(
'Modules/Course/classes/class.ilCourseParticipants.php');
26 include_once(
'Modules/Course/classes/Export/class.ilCourseDefinedFieldDefinition.php');
27 include_once(
'Services/User/classes/class.ilUserDefinedData.php');
28 include_once(
'Services/User/classes/class.ilUserFormSettings.php');
30 define(
"IL_MEMBER_EXPORT_CSV_FIELD_SEPERATOR",
',');
31 define(
"IL_MEMBER_EXPORT_CSV_STRING_DELIMITER",
'"');
72 public function __construct($a_ref_id, $a_type = self::EXPORT_CSV)
74 global $ilObjDataCache,
$lng;
78 $this->export_type = $a_type;
80 $this->ref_id = $a_ref_id;
81 $this->obj_id = $ilObjDataCache->lookupObjId($this->ref_id);
98 $this->filename = $a_file;
159 case self::EXPORT_CSV:
163 case self::EXPORT_EXCEL:
178 return $this->csv->getCSVString();
188 include_once
"./Services/Excel/classes/class.ilExcelUtils.php";
189 include_once
"./Services/Excel/classes/class.ilExcelWriterAdapter.php";
191 $workbook = $adapter->getWorkbook();
192 $this->worksheet = $workbook->addWorksheet();
205 include_once(
'Services/Utilities/classes/class.ilCSVWriter.php');
220 protected function addCol($a_value,$a_row,$a_col)
224 case self::EXPORT_CSV:
225 $this->csv->addColumn($a_value);
228 case self::EXPORT_EXCEL:
229 $this->worksheet->write($a_row,$a_col,$a_value);
242 case self::EXPORT_CSV:
243 $this->csv->addRow();
246 case self::EXPORT_EXCEL:
260 include_once(
'Services/PrivacySecurity/classes/class.ilPrivacySettings.php');
261 include_once(
'Services/PrivacySecurity/classes/class.ilExportFieldsInfo.php');
262 include_once(
'Modules/Course/classes/Export/class.ilCourseDefinedFieldDefinition.php');
263 include_once(
'Services/User/classes/class.ilUserDefinedFields.php');
266 $field_info->sortExportFields();
272 $fields[] =
'agreement';
275 foreach($field_info->getExportableFields() as $field)
277 if($this->settings->enabled($field))
284 foreach($udf->getCourseExportableFields() as $field_id => $udf_data)
286 if($this->settings->enabled(
'udf_'.$field_id))
288 $fields[] =
'udf_'.$field_id;
295 if($this->settings->enabled(
'cdf_'.$field_obj->getId()))
297 $fields[] =
'cdf_'.$field_obj->getId();
300 return $fields ? $fields : array();
317 #$this->csv->addColumn($this->lng->txt($this->getType().'_role_status')); 318 $this->
addCol($this->lng->txt($this->getType().
'_role_status'),
$row, $col++);
321 #$this->csv->addColumn($this->lng->txt('ps_agreement_accepted')); 322 $this->
addCol($this->lng->txt(
'ps_agreement_accepted'),
$row, $col++);
324 case 'consultation_hour':
325 $this->lng->loadLanguageModule(
'dateplaner');
326 $this->
addCol($this->lng->txt(
'cal_ch_field_ch'),
$row, $col++);
330 if(substr($field,0,4) ==
'udf_')
332 $field_id = explode(
'_',$field);
333 include_once(
'Services/User/classes/class.ilUserDefinedFields.php');
335 $def = $udf->getDefinition($field_id[1]);
336 #$this->csv->addColumn($def['field_name']); 337 $this->
addCol($def[
'field_name'],
$row, $col++);
339 elseif(substr($field,0,4) ==
'cdf_')
341 $field_id = explode(
'_',$field);
342 #$this->csv->addColumn(ilCourseDefinedFieldDefinition::_lookupName($field_id[1])); 344 }elseif($field ==
"username")
346 $this->
addCol($this->lng->txt(
"login"),
$row, $col++);
350 #$this->csv->addColumn($this->lng->txt($field)); 351 $this->
addCol($this->lng->txt($field),
$row, $col++);
356 #$this->csv->addRow(); 359 foreach($this->user_ids as $usr_id)
365 foreach($all_fields as $field)
383 switch($this->user_course_data[$usr_id][
'role'])
386 #$this->csv->addColumn($this->lng->txt('crs_admin')); 387 $this->
addCol($this->lng->txt(
'crs_admin'),
$row, $col++);
391 #$this->csv->addColumn($this->lng->txt('crs_tutor')); 392 $this->
addCol($this->lng->txt(
'crs_tutor'),
$row, $col++);
396 #$this->csv->addColumn($this->lng->txt('crs_member')); 397 $this->
addCol($this->lng->txt(
'crs_member'),
$row, $col++);
401 #$this->csv->addColumn($this->lng->txt('il_grp_admin')); 402 $this->
addCol($this->lng->txt(
'il_grp_admin'),
$row, $col++);
406 #$this->csv->addColumn($this->lng->txt('il_grp_member')); 407 $this->
addCol($this->lng->txt(
'il_grp_member'),
$row, $col++);
411 #$this->csv->addColumn($this->lng->txt($this->getType().'_subscriber')); 412 $this->
addCol($this->lng->txt($this->getType().
'_subscriber'),
$row, $col++);
416 #$this->csv->addColumn($this->lng->txt('crs_waiting_list')); 417 $this->
addCol($this->lng->txt(
'crs_waiting_list'),
$row, $col++);
424 if(isset($this->agreement[$usr_id]))
426 if($this->agreement[$usr_id][
'accepted'])
428 #$this->csv->addColumn(ilFormat::formatUnixTime($this->agreement[$usr_id]['acceptance_time'],true)); 433 #$this->csv->addColumn($this->lng->txt('ps_not_accepted')); 434 $this->
addCol($this->lng->txt(
'ps_not_accepted'),
$row,$col++);
439 #$this->csv->addColumn($this->lng->txt('ps_not_accepted')); 440 $this->
addCol($this->lng->txt(
'ps_not_accepted'),
$row,$col++);
446 #$this->csv->addColumn($this->user_profile_data[$usr_id]['login']); 447 $this->
addCol($this->user_profile_data[$usr_id][
'login'],
$row,$col++);
452 #$this->csv->addColumn($this->user_profile_data[$usr_id][$field]); 453 $this->
addCol($this->user_profile_data[$usr_id][$field],
$row,$col++);
456 case 'consultation_hour':
457 include_once
'./Services/Booking/classes/class.ilBookingEntry.php';
461 foreach((array) $bookings[$usr_id] as $ut)
468 if(strlen($ut[
'explanation']))
470 $tmp .=
' '.$ut[
'explanation'];
474 $uts_str = implode(
',',$uts);
481 or $this->agreement[$usr_id][
'accepted'])
483 #$this->csv->addColumn($this->user_profile_data[$usr_id][$field]); 484 $this->
addCol($this->user_profile_data[$usr_id][$field],
$row,$col++);
488 #$this->csv->addColumn(''); 495 #$this->csv->addRow(); 513 if($this->settings->enabled(
'admin'))
515 $this->user_ids = $tmp_ids = $this->members->getAdmins();
518 if($this->settings->enabled(
'tutor'))
520 $this->user_ids = array_merge($tmp_ids = $this->members->getTutors(),
$this->user_ids);
523 if($this->settings->enabled(
'member'))
525 $this->user_ids = array_merge($tmp_ids = $this->members->getMembers(),
$this->user_ids);
528 if($this->settings->enabled(
'subscribers'))
530 $this->user_ids = array_merge($tmp_ids = $this->members->getSubscribers(),
$this->user_ids);
533 if($this->settings->enabled(
'waiting_list'))
535 include_once(
'Modules/Course/classes/class.ilCourseWaitingList.php');
537 $this->user_ids = array_merge($waiting_list->getUserIds(),
$this->user_ids);
541 $this->user_ids =
ilUtil::_sortIds($this->user_ids,
'usr_data',
'lastname',
'usr_id');
555 foreach($a_user_ids as $user_id)
558 if($this->members->isAdmin($user_id))
562 elseif($this->members->isTutor($user_id))
564 $this->user_course_data[$user_id][
'role'] =
IL_CRS_TUTOR;
566 elseif($this->members->isMember($user_id))
572 $this->user_course_data[$user_id][
'role'] =
'subscriber';
586 include_once(
'Modules/Course/classes/Export/class.ilCourseUserData.php');
601 if(substr($a_field,0,4) !=
'cdf_')
606 or $this->agreement[$a_usr_id][
'accepted'])
608 $field_info = explode(
'_',$a_field);
609 $field_id = $field_info[1];
610 $value = $this->user_course_fields[$a_usr_id][$field_id];
611 #$this->csv->addColumn($value); 615 #$this->csv->addColumn(''); 631 if(substr($a_field,0,4) !=
'udf_')
635 if(!$this->privacy->courseConfirmationRequired() or $this->agreement[$udf_data->getUserId()][
'accepted'])
637 $field_info = explode(
'_',$a_field);
638 $field_id = $field_info[1];
639 $value = $udf_data->get(
'f_'.$field_id);
640 #$this->csv->addColumn($value); 644 #$this->csv->addColumn('');
__construct($a_ref_id, $a_type=self::EXPORT_CSV)
Constructor.
Class for generation of member export files.
getCSVString()
toString method
static _getInstance()
Get instance.
Helper class to generate CSV files.
createCSV()
Create CSV File.
readCourseData($a_user_ids, $a_status='member')
Read All User related course data.
getOrderedExportableFields()
Get ordered enabled fields.
static lookupManagedBookingsForObject($a_obj_id, $a_usr_id)
Lookup bookings for own and managed consultation hours of an object.
addUserDefinedField($udf_data, $a_field, $row, $col)
Add user defined fields.
static _getValuesByObjId($a_obj_id)
Get values by obj_id (for all users)
static formatPeriod(ilDateTime $start, ilDateTime $end)
Format a period of two date Shows: 14.
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
readCourseSpecificFieldsData()
Read course specific fields data.
static setUseRelativeDates($a_status)
set use relative dates
create()
Create Export File.
static _readByObjId($a_obj_id)
Read user data by object id.
static _readUsersProfileData($a_user_ids)
STATIC METHOD get user data of selected users.
setFilename($a_file)
set filename
Class ilExcelWriterAdapter.
getFilename()
get filename
static _sortIds($a_ids, $a_table, $a_field, $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.
static _getInstanceByType($a_type)
Get Singleton Instance.
addCol($a_value, $a_row, $a_col)
Write on column.
const IL_CRS_ADMIN
Base class for course and group participants.
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
static _lookupType($a_id, $a_reference=false)
lookup object type
static _hasFields($a_container_id)
Check if there are any define fields.
addCourseField($a_usr_id, $a_field, $row, $col)
fill course specific fields
getExportType()
get current export type
fetchUsers()
Fetch all users that will be exported.
initMembers()
Init member object.
static _getInstance()
Get instance of ilPrivacySettings.
static _lookupName($a_field_id)
Lookup field name.
static _getFields($a_container_id, $a_sort=IL_CDF_SORT_NAME)
Get all fields of a container.