5include_once 
"./Services/Xml/classes/class.ilXmlWriter.php";
 
    6include_once 
"./Modules/Forum/classes/class.ilFileDataForum.php";
 
    7include_once 
"Services/MediaObjects/classes/class.ilObjMediaObject.php";
 
    8include_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;
 
   66        $query_frm = 
'SELECT * FROM frm_settings fs ' .
 
   67                    'JOIN object_data od ON fs.obj_id = od.obj_id ' .
 
   68                    'JOIN frm_data ON top_frm_fk  = od.obj_id ' .
 
   69                    'WHERE fs.obj_id = ' . 
$ilDB->quote($this->forum_id, 
'integer');
 
   85        $this->
xmlElement(
"Statistics", 
null, (
int) 
$row->statistics_enabled);
 
   86        $this->
xmlElement(
"ThreadRatings", 
null, (
int) 
$row->thread_rating);
 
   88        $this->
xmlElement(
"MarkModeratorPosts", 
null, (
int) 
$row->mark_mod_posts);
 
   89        $this->
xmlElement(
"PostingActivation", 
null, (
int) 
$row->post_activation);
 
   90        $this->
xmlElement(
"PresetSubject", 
null, (
int) 
$row->preset_subject);
 
   92        $this->
xmlElement(
"NotificationType", 
null, 
$row->notification_type);
 
   93        $this->
xmlElement(
"ForceNotification", 
null, (
int) 
$row->admin_force_noti);
 
   94        $this->
xmlElement(
"ToggleNotification", 
null, (
int) 
$row->user_toggle_noti);
 
   99        $this->
xmlElement(
"FileUpload", 
null, (
int) 
$row->file_upload_allowed);
 
  104        $query_thr = 
"SELECT frm_threads.* " .
 
  105                    " FROM frm_threads " .
 
  106                    " INNER JOIN frm_data ON top_pk = thr_top_fk " .
 
  107                    'WHERE top_frm_fk = ' . 
$ilDB->quote($this->forum_id, 
'integer');
 
  116            $this->
xmlElement(
"UserId", 
null, (
int) 
$row->thr_display_user_id);
 
  126            $query = 
'SELECT frm_posts.*, frm_posts_tree.* 
  129                                                                ON top_pk = pos_top_fk 
  130                                                        INNER JOIN frm_posts_tree 
  132                                                WHERE pos_thr_fk = ' . 
$ilDB->quote(
$row->thr_pk, 
'integer') . 
' ';
 
  133            $query .= 
" ORDER BY frm_posts_tree.lft ASC";
 
  137            while ($rowPost = 
$ilDB->fetchObject($resPosts)) {
 
  149                $this->
xmlElement(
"Id", 
null, (
int) $rowPost->pos_pk);
 
  150                $this->
xmlElement(
"UserId", 
null, (
int) $rowPost->pos_display_user_id);
 
  151                $this->
xmlElement(
"AuthorId", 
null, (
int) $rowPost->pos_author_id);
 
  152                $this->
xmlElement(
"Alias", 
null, $rowPost->pos_usr_alias);
 
  153                $this->
xmlElement(
"Subject", 
null, $rowPost->pos_subject);
 
  154                $this->
xmlElement(
"CreateDate", 
null, $rowPost->pos_date);
 
  155                $this->
xmlElement(
"UpdateDate", 
null, $rowPost->pos_update);
 
  156                $this->
xmlElement(
"UpdateUserId", 
null, (
int) $rowPost->update_user);
 
  157                $this->
xmlElement(
"Censorship", 
null, (
int) $rowPost->pos_cens);
 
  158                $this->
xmlElement(
"CensorshipMessage", 
null, $rowPost->pos_cens_com);
 
  159                $this->
xmlElement(
"Notification", 
null, $rowPost->notify);
 
  160                $this->
xmlElement(
"ImportName", 
null, $rowPost->import_name);
 
  161                $this->
xmlElement(
"Status", 
null, (
int) $rowPost->pos_status);
 
  164                if ($rowPost->is_author_moderator === 
null) {
 
  165                    $is_moderator_string = 
'NULL';
 
  167                    $is_moderator_string = (string) $rowPost->is_author_moderator;
 
  170                $this->
xmlElement(
"isAuthorModerator", 
null, $is_moderator_string);
 
  172                $media_exists = 
false;
 
  174                foreach (
$mobs as $mob) {
 
  175                    $moblabel = 
"il_" . IL_INST_ID . 
"_mob_" . $mob;
 
  177                        if (!$media_exists) {
 
  179                            $media_exists = 
true;
 
  184                            "label"                 => $moblabel,
 
  185                            "uri"                   => $this->target_dir_relative . 
"/objects/" . 
"il_" . IL_INST_ID . 
"_mob_" . $mob . 
"/" . $mob_obj->getTitle()
 
  188                        $this->
xmlElement(
"MediaObject", $imgattrs, 
null);
 
  189                        $mob_obj->exportFiles($this->target_dir_absolute);
 
  196                $this->
xmlElement(
"Lft", 
null, (
int) $rowPost->lft);
 
  197                $this->
xmlElement(
"Rgt", 
null, (
int) $rowPost->rgt);
 
  198                $this->
xmlElement(
"Depth", 
null, (
int) $rowPost->depth);
 
  199                $this->
xmlElement(
"ParentId", 
null, (
int) $rowPost->parent_pos);
 
  207                if (count($tmp_file_obj->getFilesOfPost())) {
 
  208                    foreach ($tmp_file_obj->getFilesOfPost() as 
$file) {
 
  211                        copy(
$file[
'path'], $this->target_dir_absolute . 
"/" . basename(
$file[
'path']));
 
  212                        $content = $this->target_dir_relative . 
"/" . basename(
$file[
'path']);
 
  245        return str_replace(
'', 
'', $this->
xmlDumpMem(
false));
 
An exception for terminatinating execution or to throw for unit testing.
This class handles all operations on files for the forum object.
setFileTargetDirectories($a_rel, $a_abs)
Set file target directories.
static _replaceMediaObjectImageSrc($a_text, $a_direction=0, $nic=IL_INST_ID)
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
xmlEndTag($tag)
Writes an endtag.
xmlDumpMem($format=true)
Returns xml document from memory.
xmlElement($tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
xmlStartTag($tag, $attrs=null, $empty=false, $encode=true, $escape=true)
Writes a starttag.
if(!array_key_exists('StateId', $_REQUEST)) $id
if(!file_exists("$old.txt")) if( $old===$new) if(file_exists("$new.txt")) $file
foreach($_POST as $key=> $value) $res