19 declare(strict_types=1);
41 $this->room->setSetting(
'object_id', $this->chat->getId());
45 $this->
setXMLContent(
'<?xml version="1.0" encoding="utf-8"?>' . $a_xml_data);
50 $this->import_install_id =
$id;
72 public function handlerBeginTag(XMLParser $a_xml_parser,
string $a_name, array $a_attribs): void
76 $this->in_messages =
true;
81 public function handlerEndTag(XMLParser $a_xml_parser,
string $a_name): void
83 $this->cdata = trim($this->cdata);
95 $this->chat->setOfflineStatus(
96 ((
int) $this->cdata) === 0
100 case 'AllowAnonymousAccess':
101 $this->room->setSetting(
'allow_anonymous', (
int) $this->cdata);
104 case 'AllowCustomUsernames':
105 $this->room->setSetting(
'allow_custom_usernames', (
int) $this->cdata);
108 case 'EnableHistory':
109 $this->room->setSetting(
'enable_history', (
int) $this->cdata);
112 case 'DisplayPastMessages':
113 $this->room->setSetting(
'display_past_msgs', (
int) $this->cdata);
116 case 'AutoGeneratedUsernameSchema':
121 $this->exportRoomId = (
int) $this->cdata;
124 case 'CreatedTimestamp':
125 $this->timestamp = (
int) $this->cdata;
137 $message = json_decode($this->message,
true, 512, JSON_THROW_ON_ERROR);
138 if (is_array($message)) {
139 $message[
'roomId'] = $this->room->getRoomId();
142 $this->room->addHistoryEntry($message);
146 $this->timestamp = 0;
147 $this->in_messages =
false;
152 $this->chat->setOfflineStatus(
true);
153 $this->chat->update();
163 if ($a_data !==
"\n") {
164 $this->cdata .= preg_replace(
"/\t+/",
' ', $a_data);
string $import_install_id
setHandlers($a_xml_parser)
handlerCharacterData(XMLParser $a_xml_parser, string $a_data)
setImportInstallId(?string $id)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
__construct(protected ilObjChatroom $chat, string $a_xml_data)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
handlerEndTag(XMLParser $a_xml_parser, string $a_name)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
handlerBeginTag(XMLParser $a_xml_parser, string $a_name, array $a_attribs)
static byObjectId(int $object_id)
setXMLContent(string $a_xml_content)