5 include_once
"./Services/Xml/classes/class.ilXmlWriter.php";
6 include_once
"./Modules/Forum/classes/class.ilFileDataForum.php";
7 include_once
"Services/MediaObjects/classes/class.ilObjMediaObject.php";
8 include_once
"Services/RTE/classes/class.ilRTE.php";
37 parent::__construct();
43 $this->forum_id = $id;
55 $this->target_dir_relative = $a_rel;
56 $this->target_dir_absolute = $a_abs;
65 $query_frm =
'SELECT * FROM frm_settings fs '.
66 'JOIN object_data od ON fs.obj_id = od.obj_id '.
67 'JOIN frm_data ON top_frm_fk = od.obj_id '.
68 'WHERE fs.obj_id = '.$ilDB->quote($this->forum_id,
'integer');
70 $res = $ilDB->query($query_frm);
85 $this->
xmlElement(
"Statistics", null, (
int)
$row->statistics_enabled);
86 $this->
xmlElement(
"PostingActivation", null, (
int)
$row->post_activation);
87 $this->
xmlElement(
"PresetSubject", null, (
int)
$row->preset_subject);
89 $this->
xmlElement(
"NotificationType", null,
$row->notification_type);
90 $this->
xmlElement(
"ForceNotification", null, (
int)
$row->admin_force_noti);
91 $this->
xmlElement(
"ToggleNotification", null, (
int)
$row->user_toggle_noti);
99 $query_thr =
"SELECT frm_threads.* ".
100 " FROM frm_threads ".
101 " INNER JOIN frm_data ON top_pk = thr_top_fk ".
102 'WHERE top_frm_fk = '.$ilDB->quote($this->forum_id,
'integer');
104 $res = $ilDB->query($query_thr);
106 while(
$row = $ilDB->fetchObject(
$res) )
121 $query =
'SELECT frm_posts.*, frm_posts_tree.* 124 ON top_pk = pos_top_fk 125 INNER JOIN frm_posts_tree 127 WHERE pos_thr_fk = '.$ilDB->quote(
$row->thr_pk,
'integer').
' ';
128 $query .=
" ORDER BY frm_posts_tree.lft ASC";
129 $resPosts = $ilDB->query(
$query);
132 while( $rowPost = $ilDB->fetchObject($resPosts) )
145 $this->
xmlElement(
"Id", null, (
int)$rowPost->pos_pk);
146 $this->
xmlElement(
"UserId", null, (
int)$rowPost->pos_usr_id);
147 $this->
xmlElement(
"Alias", null, $rowPost->pos_usr_alias);
148 $this->
xmlElement(
"Subject", null, $rowPost->pos_subject);
149 $this->
xmlElement(
"CreateDate", null, $rowPost->pos_date);
150 $this->
xmlElement(
"UpdateDate", null, $rowPost->pos_update);
151 $this->
xmlElement(
"UpdateUserId", null, (
int)$rowPost->update_user);
152 $this->
xmlElement(
"Censorship", null, (
int)$rowPost->pos_cens);
153 $this->
xmlElement(
"CensorshipMessage", null, $rowPost->pos_cens_com);
154 $this->
xmlElement(
"Notification", null, $rowPost->notify);
155 $this->
xmlElement(
"ImportName", null, $rowPost->import_name);
156 $this->
xmlElement(
"Status", null, (
int)$rowPost->pos_status);
159 $media_exists =
false;
161 foreach(
$mobs as $mob)
163 $moblabel =
"il_" . IL_INST_ID .
"_mob_" . $mob;
169 $media_exists =
true;
174 "label" => $moblabel,
175 "uri" => $this->target_dir_relative .
"/objects/" .
"il_" . IL_INST_ID .
"_mob_" . $mob .
"/" . $mob_obj->getTitle()
178 $this->
xmlElement(
"MediaObject", $imgattrs, NULL);
179 $mob_obj->exportFiles($this->target_dir_absolute);
187 $this->
xmlElement(
"Lft", null, (
int)$rowPost->lft);
188 $this->
xmlElement(
"Rgt", null, (
int)$rowPost->rgt);
189 $this->
xmlElement(
"Depth", null, (
int)$rowPost->depth);
190 $this->
xmlElement(
"ParentId", null, (
int)$rowPost->parent_pos);
193 $this->forum_id, $rowPost->pos_pk
197 if ( count($tmp_file_obj->getFilesOfPost()) )
199 foreach ($tmp_file_obj->getFilesOfPost() as
$file)
203 copy(
$file[
'path'], $this->target_dir_absolute.
"/".basename(
$file[
'path']));
204 $content = $this->target_dir_relative.
"/".basename(
$file[
'path']);
237 return str_replace(
'',
'', $this->
xmlDumpMem(
false));
xmlStartTag($tag, $attrs=NULL, $empty=FALSE, $encode=TRUE, $escape=TRUE)
Writes a starttag.
xmlElement($tag, $attrs=NULL, $data=Null, $encode=TRUE, $escape=TRUE)
Writes a basic element (no children, just textual content)
xmlEndTag($tag)
Writes an endtag.
const DB_FETCHMODE_OBJECT
setFileTargetDirectories($a_rel, $a_abs)
Set file target directories.
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
static _replaceMediaObjectImageSrc($a_text, $a_direction=0)
replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
This class handles all operations on files for the forum object.
xmlDumpMem($format=TRUE)
Returns xml document from memory.