25 include_once
"./Services/Xml/classes/class.ilXmlWriter.php";
44 private $mode = self::MODE_SOAP;
77 $this->EXPORT_VERSION =
"2";
85 $this->mode = $a_mode;
95 if ($this->
getMode() == self::MODE_SOAP) {
100 if ($this->attach_users) {
109 include_once
'./Services/Container/classes/class.ilContainerSortingSettings.php';
113 } elseif ($this->
getMode() == self::MODE_EXPORT) {
118 include_once
'./Services/Container/classes/class.ilContainerSortingSettings.php';
127 #var_dump("<pre>", htmlentities($this->xmlDumpMem()),"<pre>"); 134 if ($a_tag ==
"Identifier" && $a_param ==
"Entry") {
135 $a_value =
"il_" . $this->
ilias->getSetting(
'inst_id') .
"_crs_" . $this->course_obj->getId();
144 $this->
xmlSetDtdDef(
"<!DOCTYPE Course PUBLIC \"-//ILIAS//DTD Course//EN\" \"" . ILIAS_HTTP_PATH .
"/xml/ilias_crs_5_0.dtd\">");
145 $this->
xmlSetGenCmt(
"Export of ILIAS course " . $this->course_obj->getId() .
" of installation " . $this->
ilias->getSetting(
'inst_id') .
".");
154 $attrs[
"exportVersion"] = $this->EXPORT_VERSION;
155 $attrs[
"id"] =
"il_" . $this->
ilias->getSetting(
'inst_id') .
'_crs_' . $this->course_obj->getId();
156 $attrs[
'showMembers'] = ($this->course_obj->getShowMembers() ?
'Yes' :
'No');
162 include_once
'Services/MetaData/classes/class.ilMD2XML.php';
164 $md2xml =
new ilMD2XML($this->course_obj->getId(), $this->course_obj->getId(),
'crs');
179 include_once(
'Services/AdvancedMetaData/classes/class.ilAdvancedMDValues.php');
185 $admins = $this->course_obj->getMembersObject()->getAdmins();
186 $admins =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
189 $this->course_obj->getRefId(),
193 foreach ($admins as $id) {
194 $attr[
'id'] =
'il_' . $this->
ilias->getSetting(
'inst_id') .
'_usr_' . $id;
195 $attr[
'notification'] = ($this->course_obj->getMembersObject()->isNotificationEnabled($id)) ?
'Yes' :
'No';
196 $attr[
'passed'] = $this->course_obj->getMembersObject()->hasPassed($id) ?
'Yes' :
'No';
197 $attr[
'contact'] = $this->course_obj->getMembersObject()->isContact($id) ?
'Yes' :
'No';
207 $tutors = $this->course_obj->getMembersObject()->getTutors();
208 $tutors =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
211 $this->course_obj->getRefId(),
214 foreach ($tutors as $id) {
215 $attr[
'id'] =
'il_' . $this->
ilias->getSetting(
'inst_id') .
'_usr_' . $id;
216 $attr[
'notification'] = ($this->course_obj->getMembersObject()->isNotificationEnabled($id)) ?
'Yes' :
'No';
217 $attr[
'passed'] = $this->course_obj->getMembersObject()->hasPassed($id) ?
'Yes' :
'No';
218 $attr[
'contact'] = $this->course_obj->getMembersObject()->isContact($id) ?
'Yes' :
'No';
227 $members = $this->course_obj->getMembersObject()->getMembers();
228 $members =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
231 $this->course_obj->getRefId(),
234 foreach ($members as $id) {
235 $attr[
'id'] =
'il_' . $this->
ilias->getSetting(
'inst_id') .
'_usr_' . $id;
236 $attr[
'blocked'] = ($this->course_obj->getMembersObject()->isBlocked($id)) ?
'Yes' :
'No';
237 $attr[
'passed'] = $this->course_obj->getMembersObject()->hasPassed($id) ?
'Yes' :
'No';
247 $subs = $this->course_obj->getMembersObject()->getSubscribers();
248 $subs =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
251 $this->course_obj->getRefId(),
255 foreach ($subs as $id) {
256 $data = $this->course_obj->getMembersObject()->getSubscriberData($id);
258 $attr[
'id'] =
'il_' . $this->
ilias->getSetting(
'inst_id') .
'_usr_' . $id;
259 $attr[
'subscriptionTime'] =
$data[
'time'];
269 include_once
'Modules/Course/classes/class.ilCourseWaitingList.php';
274 foreach ($wait as
$data) {
275 $is_accessible =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
278 $this->course_obj->getRefId(),
281 if (!count($is_accessible)) {
285 $attr[
'id'] =
'il_' . $this->
ilias->getSetting(
'inst_id') .
'_usr_' . $data[
'usr_id'];
286 $attr[
'position'] = $data[
'position'];
287 $attr[
'subscriptionTime'] = $data[
'time'];
305 if ($this->course_obj->getOfflineStatus()) {
307 } elseif ($this->course_obj->getActivationUnlimitedStatus()) {
311 $this->
xmlElement(
'Start', null, $this->course_obj->getActivationStart());
312 $this->
xmlElement(
'End', null, $this->course_obj->getActivationEnd());
313 $this->
xmlEndTag(
'TemporarilyAvailable');
318 $this->
xmlElement(
'Syllabus', null, $this->course_obj->getSyllabus());
319 $this->
xmlElement(
'ImportantInformation', null, $this->course_obj->getImportantInformation());
320 $this->
xmlElement(
'TargetGroup', null, $this->course_obj->getTargetGroup());
325 $this->
xmlElement(
'Name', null, $this->course_obj->getContactName());
326 $this->
xmlElement(
'Responsibility', null, $this->course_obj->getContactResponsibility());
327 $this->
xmlElement(
'Phone', null, $this->course_obj->getContactPhone());
328 $this->
xmlElement(
'Email', null, $this->course_obj->getContactEmail());
329 $this->
xmlElement(
'Consultation', null, $this->course_obj->getContactConsultation());
336 $attr[
'registrationType'] =
'Confirmation';
338 $attr[
'registrationType'] =
'Direct';
340 $attr[
'registrationType'] =
'Password';
343 $attr[
'maxMembers'] = $this->course_obj->isSubscriptionMembershipLimited() ?
344 $this->course_obj->getSubscriptionMaxMembers() : 0;
345 $attr[
'notification'] = $this->course_obj->getSubscriptionNotify() ?
'Yes' :
'No';
346 $attr[
'waitingList'] = $this->course_obj->enabledWaitingList() ?
'Yes' :
'No';
356 $this->
xmlElement(
'Start', null, $this->course_obj->getSubscriptionStart());
357 $this->
xmlElement(
'End', null, $this->course_obj->getSubscriptionEnd());
358 $this->
xmlEndTag(
'TemporarilyAvailable');
360 if (strlen($pwd = $this->course_obj->getSubscriptionPassword())) {
366 $this->
xmlStartTag(
'Period', [
'withTime' => $this->course_obj->getCourseStartTimeIndication() ? 1 : 0]);
370 $this->course_obj->getCourseStart()
371 ? $this->course_obj->getCourseStart()->get(
IL_CAL_UNIX)
377 $this->course_obj->getCourseEnd()
378 ? $this->course_obj->getCourseEnd()->get(
IL_CAL_UNIX)
382 $this->
xmlElement(
'WaitingListAutoFill', null, (
int) $this->course_obj->hasWaitingListAutoFill());
383 $this->
xmlElement(
'CancellationEnd', null, ($this->course_obj->getCancellationEnd() && !$this->course_obj->getCancellationEnd()->isNull()) ? $this->course_obj->getCancellationEnd()->get(
IL_CAL_UNIX) : null);
384 $this->
xmlElement(
'MinMembers', null, (
int) $this->course_obj->getSubscriptionMinMembers());
386 $this->
xmlElement(
'ViewMode', null, $this->course_obj->getViewMode());
388 $this->
xmlElement(
'TimingMode', null, $this->course_obj->getTimingMode());
394 'active' => $this->course_obj->isSessionLimitEnabled() ? 1 : 0,
395 'previous' => $this->course_obj->getNumberOfPreviousSessions(),
396 'next' => $this->course_obj->getNumberOfNextSessions()
403 'status' => $this->course_obj->getAutoNotification() ? 1 : 0
407 $this->
xmlElement(
'StatusDetermination', null, (
int) $this->course_obj->getStatusDetermination());
408 $this->
xmlElement(
'MailToMembersType', null, (
int) $this->course_obj->getMailToMembersType());
410 'enabled' => (
int) $this->course_obj->getEnableCourseMap(),
411 'latitude' => $this->course_obj->getLatitude(),
412 'longitude' => $this->course_obj->getLongitude(),
413 'location_zoom' => $this->course_obj->getLocationZoom()
434 $this->attach_users = $value ? true :
false;
static _exportContainerSettings(ilXmlWriter $a_xml, $a_obj_id)
xmlStartTag($tag, $attrs=null, $empty=false, $encode=true, $escape=true)
Writes a starttag.
setAttachUsers($value)
write access to attach user property, if set to false no users will be attached.
xmlSetGenCmt($genCmt)
Sets generated comment.
xmlSetDtdDef($dtdDef)
Sets dtd definition.
xmlDumpMem($format=true)
Returns xml document from memory.
static _appendXMLByObjId(ilXmlWriter $a_xml_writer, $a_obj_id)
Get xml of object values.
const IL_CRS_SUBSCRIPTION_CONFIRMATION
xmlEndTag($tag)
Writes an endtag.
__construct($course_obj)
constructor
getAllUsers()
get all users on waiting list
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
const IL_CRS_SUBSCRIPTION_UNLIMITED
redirection script todo: (a better solution should control the processing via a xml file) ...
xmlHeader()
Writes xml header public.
xmlElement($tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
modifyExportIdentifier($a_tag, $a_param, $a_value)
__construct(Container $dic, ilPlugin $plugin)
static _exportContainerSortingSettings(ilXmlWriter $xml, $obj_id)
sorting XML-export for all container objects
appendXML($a_str)
append xml string to document
const IL_CRS_SUBSCRIPTION_DIRECT
const IL_CRS_SUBSCRIPTION_DEACTIVATED
__buildAdvancedMetaData()
Build advanced meta data.