ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
ilForumUtil Class Reference

Class ilForumUtil. More...

+ Collaboration diagram for ilForumUtil:

Static Public Member Functions

static getPublicUserAlias ($user_alias, $is_anonymized=false)
 
static collectPostInformationByPostId ($post_id)
 
static moveMediaObjects ($post_message, $source_type, $source_id, $target_type, $target_id, $direction=0)
 
static saveMediaObjects ($post_message, $target_type, $target_id, $direction=0)
 

Detailed Description

Class ilForumUtil.

Author
Nadia Matuschek nmatu.nosp@m.sche.nosp@m.k@dat.nosp@m.abay.nosp@m..de

Definition at line 8 of file class.ilForumUtil.php.

Member Function Documentation

◆ collectPostInformationByPostId()

static ilForumUtil::collectPostInformationByPostId (   $post_id)
static

Definition at line 31 of file class.ilForumUtil.php.

32 {
33 global $DIC;
34 $ilDB = $DIC->database();
35
36 $res = $ilDB->queryF(
37 '
38 SELECT frm.top_name, thr.thr_subject, pos.pos_subject FROM frm_data frm
39 INNER JOIN frm_threads thr ON frm.top_pk = thr.thr_top_fk
40 INNER JOIN frm_posts pos ON thr.thr_pk = pos.pos_thr_fk
41 WHERE pos_pk = %s',
42 array('integer'),
43 array($post_id)
44 );
45
46 $info = array();
47 while ($row = $ilDB->fetchAssoc($res)) {
48 $info['forum_title'] = $row['top_name'];
49 $info['thread_title'] = $row['thr_subject'];
50 $info['post_title'] = $row['pos_subject'];
51 }
52 return $info;
53 }
foreach($_POST as $key=> $value) $res
global $ilDB
$DIC
Definition: xapitoken.php:46

References $DIC, $ilDB, and $res.

◆ getPublicUserAlias()

static ilForumUtil::getPublicUserAlias (   $user_alias,
  $is_anonymized = false 
)
static
Parameters
$user_alias
bool$is_anonymized
Returns
string

Definition at line 15 of file class.ilForumUtil.php.

16 {
17 global $DIC;
18 $ilUser = $DIC->user();
19 $lng = $DIC->language();
20
21 if ($is_anonymized) {
22 if (!strlen($user_alias)) {
23 $user_alias = $lng->txt('forums_anonymous');
24 }
25
26 return $user_alias;
27 }
28 return $ilUser->getLogin();
29 }
$lng
$ilUser
Definition: imgupload.php:18

References $DIC, $ilUser, and $lng.

Referenced by ilObjForumGUI\createThread(), ilForumAutoSaveAsyncDraftAction\getInputValuesFromForm(), ilObjForumGUI\saveThreadAsDraftObject(), and ilObjForumGUI\updateThreadDraftObject().

+ Here is the caller graph for this function:

◆ moveMediaObjects()

static ilForumUtil::moveMediaObjects (   $post_message,
  $source_type,
  $source_id,
  $target_type,
  $target_id,
  $direction = 0 
)
static
Parameters
string$post_message
string$source_type
int$source_id
string$target_type
int$target_id

Definition at line 62 of file class.ilForumUtil.php.

63 {
64 $mediaObjects = ilRTE::_getMediaObjects($post_message, $direction);
65 $myMediaObjects = ilObjMediaObject::_getMobsOfObject($source_type, $source_id);
66 foreach ($mediaObjects as $mob) {
67 foreach ($myMediaObjects as $myMob) {
68 if ($mob == $myMob) {
69 // change usage
70 ilObjMediaObject::_removeUsage($mob, $source_type, $source_id);
71 break;
72 }
73 }
75 }
76 }
static _saveUsage($a_mob_id, $a_type, $a_id, $a_usage_hist_nr=0, $a_lang="-")
Save usage of mob within another container (e.g.
static _getMobsOfObject($a_type, $a_id, $a_usage_hist_nr=0, $a_lang="-")
get mobs of object
static _removeUsage($a_mob_id, $a_type, $a_id, $a_usage_hist_nr=0, $a_lang="-")
Remove usage of mob in another container.
static _getMediaObjects($a_text, $a_direction=0)
Returns all media objects found in the passed string.
$target_id
Definition: goto.php:49
$target_type
Definition: goto.php:48

References $target_id, $target_type, ilRTE\_getMediaObjects(), ilObjMediaObject\_getMobsOfObject(), ilObjMediaObject\_removeUsage(), and ilObjMediaObject\_saveUsage().

Referenced by ilObjForumGUI\cancelDraftObject(), ilForumPostDraft\createDraftBackup(), ilForumDraftsHistory\rollbackAutosave(), ilObjForumGUI\saveThreadAsDraftObject(), and ilObjForumGUI\updateThreadDraftObject().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ saveMediaObjects()

static ilForumUtil::saveMediaObjects (   $post_message,
  $target_type,
  $target_id,
  $direction = 0 
)
static
Parameters
$post_message
$target_type
$target_id

Definition at line 83 of file class.ilForumUtil.php.

84 {
85 $mediaObjects = ilRTE::_getMediaObjects($post_message, $direction);
86
87 foreach ($mediaObjects as $mob) {
89 }
90 }

References $target_id, $target_type, ilRTE\_getMediaObjects(), and ilObjMediaObject\_saveUsage().

Referenced by ilObjForumGUI\publishDraftObject().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

The documentation for this class was generated from the following file: