35 $this->lng = $DIC->language();
36 $this->ctrl = $DIC->ctrl();
37 $this->access = $DIC->access();
38 $this->error = $DIC[
'ilErr'];
40 $this->
user = $DIC->user();
41 $this->ilObjDataCache = $DIC[
'ilObjDataCache'];
44 $this->frm = $forum->Forum;
47 $this->frm->setForumId($forum->getId());
48 $this->frm->setForumRefId($forum->getRefId());
50 $this->lng->loadLanguageModule(
'forum');
52 $this->is_moderator = $this->access->checkAccess(
'moderate_frm',
'', (
int) $_GET[
'ref_id']);
60 $next_class = $this->ctrl->getNextClass($this);
61 $cmd = $this->ctrl->getCmd();
63 switch ($next_class) {
72 if (!$this->access->checkAccess(
'read,visible',
'', (
int)
$_GET[
'ref_id'])) {
73 $this->error->raiseError($this->lng->txt(
'permission_denied'), $this->error->MESSAGE);
83 $tpl->setVariable(
'LOCATION_STYLESHEET', $location_stylesheet);
88 $this->frm->setMDB2WhereCondition(
'top_pk = %s ', array(
'integer'), array((
int) $_GET[
'thr_top_fk']));
89 if (is_array($frmData = $this->frm->getOneTopic())) {
90 $topic =
new ilForumTopic(addslashes($_GET[
'print_thread']), $this->is_moderator);
93 $topic->setOrderField(
'frm_posts_tree.rgt');
94 $first_post = $topic->getFirstPostNode();
95 $post_collection = $topic->getPostTree($first_post);
96 $num_posts = count($post_collection);
98 $tpl->setVariable(
'TITLE', $topic->getSubject());
101 $this->lng->txt(
'forum') .
': ' . $frmData[
'top_name'] .
' > ' .
102 $this->lng->txt(
'forums_thread') .
': ' . $topic->getSubject() .
' > ' .
103 $this->lng->txt(
'forums_count_art') .
': ' . $num_posts
107 foreach ($post_collection as $post) {
111 $tpl->printToStdout();
131 if ((
int) $thread->
getForumId() !== (int) $forumId) {
132 $this->error->raiseError($this->lng->txt(
'permission_denied'), $this->error->MESSAGE);
151 $rowCol =
'ilModeratorPosting';
154 $rowCol =
'ilModeratorPosting';
166 $tpl->
setVariable(
'TXT_CENSORSHIP_ADVICE', $this->lng->txt(
'post_censored_comment_by_moderator'));
167 $rowCol =
'tblrowmarked';
172 $tpl->
setVariable(
'POST_NOT_ACTIVATED_YET', $this->lng->txt(
'frm_post_not_activated_yet'));
182 if ($authorinfo->hasSuffix()) {
183 if (!$authorinfo->isDeleted()) {
184 $tpl->
setVariable(
'USR_NAME', $authorinfo->getAlias());
186 $tpl->
setVariable(
'AUTHOR', $authorinfo->getSuffix());
188 if ($authorinfo->getAuthorName(
true) && !$this->objProperties->isAnonymized()) {
189 $tpl->
setVariable(
'USR_NAME', $authorinfo->getAuthorName(
true));
191 $tpl->
setVariable(
'AUTHOR', $authorinfo->getAuthorShortName());
194 if (self::MODE_EXPORT_CLIENT == $mode) {
195 if ($authorinfo->getAuthor()->getPref(
'public_profile') !=
'n') {
196 $tpl->
setVariable(
'TXT_REGISTERED', $this->lng->txt(
'registered_since'));
199 $this->frm->convertDate($authorinfo->getAuthor()->getCreateDate())
204 if ($this->is_moderator) {
207 $num_posts = $this->frm->countActiveUserArticles($post->
getDisplayUserId());
209 $tpl->
setVariable(
'TXT_NUM_POSTS', $this->lng->txt(
'forums_posts'));
214 $tpl->
setVariable(
'USR_IMAGE', $authorinfo->getProfilePicture());
216 (
int)
$_GET[
'ref_id'],
219 if ($authorinfo->getAuthor()->getGender() ==
'f') {
220 $tpl->
setVariable(
'ROLE', $this->lng->txt(
'frm_moderator_f'));
222 if ($authorinfo->getAuthor()->getGender() ==
'm') {
223 $tpl->
setVariable(
'ROLE', $this->lng->txt(
'frm_moderator_m'));
225 if ($authorinfo->getAuthor()->getGender() ==
'n') {
226 $tpl->
setVariable(
'ROLE', $this->lng->txt(
'frm_moderator_n'));
236 $spanClass =
'moderator_small';
250 $this->lng->txt(
'edited_on') .
': ' . $this->frm->convertDate($post->
getChangeDate()) .
' - ' . strtolower($this->lng->txt(
'by'))
252 $tpl->
setVariable(
'UPDATE_AUTHOR', $authorinfo->getLinkedAuthorShortName());
253 if ($authorinfo->getAuthorName(
true) && !$this->objProperties->isAnonymized()) {
254 $tpl->
setVariable(
'UPDATE_USR_NAME', $authorinfo->getAuthorName(
true));
266 $spanClass =
'moderator';
275 if ($spanClass !=
"") {
295 if (!$this->access->checkAccess(
'read,visible',
'',
$_GET[
'ref_id'])) {
296 $this->error->raiseError($this->lng->txt(
'permission_denied'), $this->error->MESSAGE);
306 $tpl->setVariable(
'LOCATION_STYLESHEET', $location_stylesheet);
311 $this->frm->setMDB2WhereCondition(
'top_pk = %s ', array(
'integer'), array((
int)
$_GET[
'top_pk']));
312 if (is_array($frmData = $this->frm->getOneTopic())) {
313 $post =
new ilForumPost((
int) $_GET[
'print_post'], $this->is_moderator);
316 $tpl->setVariable(
'TITLE', $post->getThread()->getSubject());
319 $this->lng->txt(
'forum') .
': ' . $frmData[
'top_name'] .
' > ' . $this->lng->txt(
'forums_thread') .
': ' . $post->getThread()->getSubject()
324 $tpl->printToStdout();
332 if (!$this->access->checkAccess(
'read,visible',
'',
$_GET[
'ref_id'])) {
333 $this->error->raiseError($this->lng->txt(
'permission_denied'), $this->error->MESSAGE);
343 $tpl->setVariable(
'LOCATION_STYLESHEET', $location_stylesheet);
344 $tpl->setVariable(
'BASE', (substr(ILIAS_HTTP_PATH, -1) ==
'/' ? ILIAS_HTTP_PATH : ILIAS_HTTP_PATH .
'/'));
351 $postIds = (array)
$_POST[
'thread_ids'];
352 array_walk($postIds,
function ($threadId) use (&$threads, $isModerator) {
353 $thread = new \ilForumTopic($threadId, $isModerator);
356 $threads[] = $thread;
360 foreach ($threads as $topic) {
361 $this->frm->setMDB2WhereCondition(
'top_pk = %s ', array(
'integer'), array($topic->getForumId()));
362 if (is_array($thread_data = $this->frm->getOneTopic())) {
364 $tpl->setVariable(
'TITLE', $thread_data[
'top_name']);
367 $first_post = $topic->getFirstPostNode();
368 $topic->setOrderField(
'frm_posts_tree.rgt');
369 $post_collection = $topic->getPostTree($first_post);
372 foreach ($post_collection as $post) {
376 $tpl->setCurrentBlock(
'thread_headline');
377 $tpl->setVariable(
'T_TITLE', $topic->getSubject());
378 if ($this->is_moderator) {
379 $tpl->setVariable(
'T_NUM_POSTS', $topic->countPosts(
true));
381 $tpl->setVariable(
'T_NUM_POSTS', $topic->countActivePosts(
true));
383 $tpl->setVariable(
'T_NUM_VISITS', $topic->getVisits());
384 $tpl->setVariable(
'T_FORUM', $thread_data[
'top_name']);
386 $topic->getThrAuthorId(),
387 $topic->getDisplayUserId(),
388 $topic->getUserAlias(),
389 $topic->getImportName()
391 $tpl->setVariable(
'T_AUTHOR', $authorinfo->getAuthorName());
392 $tpl->setVariable(
'T_TXT_FORUM', $this->lng->txt(
'forum') .
': ');
393 $tpl->setVariable(
'T_TXT_TOPIC', $this->lng->txt(
'forums_thread') .
': ');
394 $tpl->setVariable(
'T_TXT_AUTHOR', $this->lng->txt(
'forums_thread_create_from') .
': ');
395 $tpl->setVariable(
'T_TXT_NUM_POSTS', $this->lng->txt(
'forums_articles') .
': ');
396 $tpl->setVariable(
'T_TXT_NUM_VISITS', $this->lng->txt(
'visits') .
': ');
397 $tpl->parseCurrentBlock();
402 $tpl->setCurrentBlock(
'thread_block');
403 $tpl->parseCurrentBlock();
407 $tpl->get(
'DEFAULT',
false,
false,
false,
true,
false,
false),
408 'forum_html_export_' .
$_GET[
'ref_id'] .
'.html'
parseCurrentBlock($part="DEFAULT")
Überladene Funktion, die auf den aktuelle Block vorher noch ein replace ausführt public...
static _isModerator($a_ref_id, $a_usr_id)
checks whether a user is moderator of a given forum object
static deliverData($a_data, $a_filename, $mime="application/octet-stream", $charset="")
deliver data for download via browser.
static lookupForumIdByObjId($obj_id)
special template class to simplify handling of ITX/PEAR
static getStyleSheetLocation($mode="output", $a_css_name="", $a_css_location="")
get full style sheet file name (path inclusive) of current user
static setUseRelativeDates($a_status)
set use relative dates
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...
ensureThreadBelongsToForum(int $objId, \ilForumTopic $thread)
static getInstance($a_obj_id=0)
Forum export to HTML and Print.
renderPostHtml(\ilGlobalTemplate $tpl, ilForumPost $post, $counter, $mode)
setCurrentBlock($part="DEFAULT")
public
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
static getInstance()
Singleton: get instance.
setVariable($variable, $value='')
static switchColor($a_num, $a_css1, $a_css2)
switches style sheets for each even $a_num (used for changing colors of different result rows) ...
setChangeDate($a_changedate)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
prepare()
Prepare the export (init MathJax rendering)