19 declare(strict_types=1);
35 private int $mode = self::MODE_SOAP;
49 $this->
logger = $DIC->logger()->grp();
51 $this->
access = $DIC->access();
57 public function setMode(
int $a_mode): void
59 $this->mode = $a_mode;
69 if ($this->
getMode() == self::MODE_SOAP) {
70 $this->
logger->debug(
'Using soap mode');
78 if ($this->attach_users) {
85 } elseif ($this->
getMode() == self::MODE_EXPORT) {
86 $this->
logger->debug(
'Using export mode');
106 $this->
xmlSetDtdDef(
"<!DOCTYPE group PUBLIC \"-//ILIAS//DTD Group//EN\" \"" . ILIAS_HTTP_PATH .
"/components/ILIAS/Export/xml/ilias_grp_9_0.xsd\">");
107 $this->
xmlSetGenCmt(
"Export of ILIAS group " . $this->group_obj->getId() .
" of installation " . $this->
settings->get(
'inst_id') .
".");
114 $attrs[
"exportVersion"] = self::EXPORT_VERSION;
115 $attrs[
"id"] =
"il_" . $this->
settings->get(
'inst_id') .
'_grp_' . $this->group_obj->getId();
117 switch ($this->group_obj->readGroupStatus()) {
119 $attrs[
'type'] =
'open';
124 $attrs[
'type'] =
'closed';
132 $md2xml =
new ilMD2XML($this->group_obj->getId(), $this->group_obj->getId(),
'grp');
148 if ($desc = $this->group_obj->getDescription()) {
152 $attr[
'id'] =
'il_' . $this->
settings->get(
'inst_id') .
'_usr_' . $this->group_obj->getOwner();
155 $this->
xmlElement(
'information',
null, $this->group_obj->getInformation());
163 if (!$this->group_obj->getStart() || !$this->group_obj->getEnd()) {
170 'withTime' => $this->group_obj->getStartTimeIndication()
176 $this->group_obj->getStart() ?
194 switch ($this->group_obj->getRegistrationType()) {
196 $attrs[
'type'] =
'direct';
199 $attrs[
'type'] =
'confirmation';
202 $attrs[
'type'] =
'password';
207 $attrs[
'type'] =
'disabled';
210 $attrs[
'waitingList'] = $this->group_obj->isWaitingListEnabled() ?
'Yes' :
'No';
214 if (strlen($pwd = $this->group_obj->getPassword())) {
220 if (!$this->group_obj->isRegistrationUnlimited()) {
224 $this->
xmlEndTag(
'temporarilyAvailable');
229 $attrs[
'enabled'] = $this->group_obj->isMembershipLimited() ?
'Yes' :
'No';
230 $this->
xmlElement(
'maxMembers', $attrs, $this->group_obj->getMaxMembers());
231 $this->
xmlElement(
'minMembers',
null, $this->group_obj->getMinMembers());
232 $this->
xmlElement(
'WaitingListAutoFill',
null, (
int) $this->group_obj->hasWaitingListAutoFill());
233 $this->
xmlElement(
'CancellationEnd',
null, ($this->group_obj->getCancellationEnd() && !$this->group_obj->getCancellationEnd()->isNull()) ? $this->group_obj->getCancellationEnd()->get(
IL_CAL_UNIX) :
null);
235 $this->
xmlElement(
'mailMembersType',
null, (
string) $this->group_obj->getMailToMembersType());
238 'RegistrationAccessCode',
240 'enabled' => (
int) $this->group_obj->isRegistrationAccessCodeEnabled(),
241 'code' => $this->group_obj->getRegistrationAccessCode()
253 $this->
xmlElement(
'showMembers',
null, $this->group_obj->getShowMembers());
254 $this->
xmlElement(
'admissionNotification',
null, $this->group_obj->getAutoNotification() ? 1 : 0);
260 'active' => $this->group_obj->isSessionLimitEnabled() ? 1 : 0,
261 'previous' => $this->group_obj->getNumberOfPreviousSessions(),
262 'next' => $this->group_obj->getNumberOfNextSessions()
267 'enabled' => (
int) $this->group_obj->getEnableGroupMap(),
268 'latitude' => $this->group_obj->getLatitude(),
269 'longitude' => $this->group_obj->getLongitude(),
270 'location_zoom' => $this->group_obj->getLocationZoom()
276 $admins = $this->group_obj->getGroupAdminIds();
277 $admins = $this->
access->filterUserIdsByRbacOrPositionOfCurrentUser(
280 $this->group_obj->getRefId(),
284 foreach ($admins as
$id) {
285 $attr[
'id'] =
'il_' . $this->
settings->get(
'inst_id') .
'_usr_' .
$id;
286 $attr[
'notification'] = $this->participants->isNotificationEnabled($id) ?
'Yes' :
'No';
294 $members = $this->group_obj->getGroupMemberIds();
295 $members = $this->
access->filterUserIdsByRbacOrPositionOfCurrentUser(
298 $this->group_obj->getRefId(),
301 foreach ($members as
$id) {
302 if (!$this->group_obj->isAdmin($id)) {
303 $attr[
'id'] =
'il_' . $this->
settings->get(
'inst_id') .
'_usr_' .
$id;
317 $this->attach_users = $value;
__construct(ilObjGroup $group_obj)
const GRP_REGISTRATION_DEACTIVATED
xmlSetGenCmt(string $genCmt)
Sets generated comment.
ilGroupParticipants $participants
appendXML(string $a_str)
append xml string to document
const GRP_REGISTRATION_REQUEST
__buildAdvancedMetaData()
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
xmlSetDtdDef(string $dtdDef)
Sets dtd definition.
static _exportContainerSortingSettings(ilXmlWriter $xml, int $obj_id)
sorting XML-export for all container objects
setAttachUsers(bool $value)
const GRP_REGISTRATION_PASSWORD
xmlHeader()
Writes xml header.
static _exportContainerSettings(ilXmlWriter $a_xml, int $a_obj_id)
const GRP_REGISTRATION_DIRECT
__buildPeriod()
Add group period settings to xml.
static _appendXMLByObjId(ilXmlWriter $a_xml_writer, int $a_obj_id)
Get xml of object values.
__buildExtraSettings()
Build extra settings, like "show member list".
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
static lookupViewMode($a_obj_id)
xmlDumpMem(bool $format=true)
Returns xml document from memory.
__buildTitleDescription()