19 declare(strict_types=1);
50 $this->content_style_domain = $DIC
57 $this->forum_id =
$id;
62 $path = str_replace(
'\\',
'/', $a_rel);
63 $segments = explode(
'/',
$path);
64 array_shift($segments);
65 $a_rel = implode(
'/', $segments);
67 $this->relative_component_path = $a_rel;
68 $this->absolute_root_export_path = rtrim($a_abs,
'/');
79 $ilDB = $DIC->database();
89 ON top_frm_fk = od.obj_id 90 LEFT JOIN frm_settings fs 91 ON fs.obj_id = od.obj_id 92 WHERE od.obj_id = ' .
$ilDB->quote($this->forum_id,
'integer');
97 $style = $this->content_style_domain->styleForObjId((
int) $row->obj_id);
99 'Style' => $style->getStyleId()
110 $this->
xmlElement(
'Statistics',
null, (
int) $row->statistics_enabled);
111 $this->
xmlElement(
'ThreadRatings',
null, (
int) $row->thread_rating);
112 $this->
xmlElement(
'MarkModeratorPosts',
null, (
int) $row->mark_mod_posts);
113 $this->
xmlElement(
'PostingActivation',
null, (
int) $row->post_activation);
114 $this->
xmlElement(
'PresetSubject',
null, (
int) $row->preset_subject);
116 $this->
xmlElement(
'NotificationType',
null, $row->notification_type);
117 $this->
xmlElement(
'NotificationEvents',
null, (
int) $row->interested_events);
118 $this->
xmlElement(
'ForceNotification',
null, (
int) $row->admin_force_noti);
119 $this->
xmlElement(
'ToggleNotification',
null, (
int) $row->user_toggle_noti);
124 $this->
xmlElement(
'FileUpload',
null, (
int) $row->file_upload_allowed);
128 $query_thr =
'SELECT frm_threads.* ' .
129 ' FROM frm_threads ' .
130 ' INNER JOIN frm_data ON top_pk = thr_top_fk ' .
131 'WHERE top_frm_fk = ' .
$ilDB->quote($this->forum_id,
'integer');
135 while ($row =
$ilDB->fetchObject(
$res)) {
140 $this->
xmlElement(
'UserId',
null, (
int) $row->thr_display_user_id);
150 $query =
'SELECT frm_posts.*, frm_posts_tree.* 153 ON top_pk = pos_top_fk 154 INNER JOIN frm_posts_tree 156 WHERE pos_thr_fk = ' .
$ilDB->quote($row->thr_pk,
'integer') .
' ';
157 $query .=
' ORDER BY frm_posts_tree.lft ASC';
158 $resPosts =
$ilDB->query($query);
160 while ($rowPost =
$ilDB->fetchObject($resPosts)) {
163 $this->
xmlElement(
'UserId',
null, (
int) $rowPost->pos_display_user_id);
164 $this->
xmlElement(
'AuthorId',
null, (
int) $rowPost->pos_author_id);
169 $this->
xmlElement(
'UpdateUserId',
null, (
int) $rowPost->update_user);
171 $this->
xmlElement(
'CensorshipMessage',
null, $rowPost->pos_cens_com);
177 if ($rowPost->is_author_moderator ===
null) {
178 $is_moderator_string =
'NULL';
180 $is_moderator_string = (string) $rowPost->is_author_moderator;
183 $this->
xmlElement(
'isAuthorModerator',
null, $is_moderator_string);
185 $media_exists =
false;
187 foreach ($mobs as $mob) {
188 $moblabel =
'il_' .
IL_INST_ID .
'_mob_' . $mob;
190 if (!$media_exists) {
192 $media_exists =
true;
197 'label' => $moblabel,
198 'uri' => $this->relative_component_path .
'/' . self::LEGACY_RESOURCE_SUB_DIRECTORY .
'/objects/' .
'il_' .
IL_INST_ID .
'_mob_' . $mob .
'/' . $mob_obj->getTitle()
202 $mob_obj->exportFiles($this->
getComponentPath() .
'/' . self::LEGACY_RESOURCE_SUB_DIRECTORY);
215 (
int) $this->forum_id,
216 (
int) $rowPost->pos_pk
219 foreach ($tmp_file_obj->getFilesOfPost() as $file) {
221 copy($file[
'path'], $this->
getComponentPath() .
'/' . self::LEGACY_RESOURCE_SUB_DIRECTORY .
'/' . basename($file[
'name']));
222 $relative_path = $this->relative_component_path .
'/' . self::LEGACY_RESOURCE_SUB_DIRECTORY .
'/' . basename($file[
'name']);
240 return str_replace(
'',
'', $this->
xmlDumpMem(
false));
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
setFileTargetDirectories(string $a_rel, string $a_abs)
readonly ILIAS Style Content DomainService $content_style_domain
const LEGACY_RESOURCE_SUB_DIRECTORY
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
string $relative_component_path
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
XML writer class Class to simplify manual writing of xml documents.
string $absolute_root_export_path
__construct(string $version='1.0', string $outEnc='utf-8', string $inEnc='utf-8')
$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)
xmlDumpMem(bool $format=true)
Returns xml document from memory.
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...