mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 03:40:37 +02:00
#2785 NewForumPosts Menu shortcode fixes.
This commit is contained in:
@@ -39,6 +39,8 @@
|
||||
* Only by nfp menu at this time.
|
||||
*/
|
||||
|
||||
// @todo new post shortcodes
|
||||
|
||||
function sc_post_url($parm=null)
|
||||
{
|
||||
$url = e107::url('forum', 'topic', $this->var, array(
|
||||
@@ -81,13 +83,14 @@
|
||||
return $this->sc_avatar($parm);
|
||||
}
|
||||
|
||||
// thread/topic
|
||||
// @todo new thread/topic shortcodes
|
||||
|
||||
function sc_topic_name($parm=null)
|
||||
{
|
||||
return $this->sc_threadname($parm);
|
||||
}
|
||||
|
||||
|
||||
function sc_topic_url($parm=null)
|
||||
{
|
||||
return e107::url('forum', 'topic', $this->var);
|
||||
@@ -109,11 +112,69 @@
|
||||
|
||||
function sc_topic_lastpost_date($parm=null)
|
||||
{
|
||||
$mode = empty($parm['format']) ? 'forum' : $parm['format'];
|
||||
return e107::getParser()->toDate($this->var['thread_lastpost'], $mode);
|
||||
}
|
||||
|
||||
|
||||
function sc_topic_lastpost_author($parm=null)
|
||||
{
|
||||
if($this->var['thread_views'] || $this->var['thread_total_replies'] > 0)
|
||||
{
|
||||
|
||||
if($this->var['thread_lastuser_username'])
|
||||
{
|
||||
$url = e107::getUrl()->create('user/profile/view', "name={$this->var['thread_lastuser_username']}&id={$this->var['thread_lastuser']}");
|
||||
return "<a href='{$url}'>" . $this->var['thread_lastuser_username'] . "</a>";
|
||||
}
|
||||
elseif($this->var['thread_lastuser_anon'])
|
||||
{
|
||||
return e107::getParser()->toHTML($this->var['thread_lastuser_anon']);
|
||||
}
|
||||
else
|
||||
{
|
||||
return LAN_FORUM_1015;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// forum
|
||||
|
||||
function sc_topic_icon($parm=null)
|
||||
{
|
||||
|
||||
$newflag = (USER && $this->var['thread_lastpost'] > USERLV && !in_array($this->var['thread_id'], $this->forum->threadGetUserViewed()));
|
||||
|
||||
$ICON = ($newflag ? IMAGE_new : IMAGE_nonew);
|
||||
|
||||
if($this->var['thread_total_replies'] >= vartrue($this->pref['popular'], 10))
|
||||
{
|
||||
$ICON = ($newflag ? IMAGE_new_popular : IMAGE_nonew_popular);
|
||||
}
|
||||
elseif(empty($this->var['thread_total_replies']) && defined('IMAGE_noreplies'))
|
||||
{
|
||||
$ICON = IMAGE_noreplies;
|
||||
}
|
||||
|
||||
if($this->var['thread_sticky'] == 1)
|
||||
{
|
||||
$ICON = ($this->var['thread_active'] ? IMAGE_sticky : IMAGE_stickyclosed);
|
||||
}
|
||||
elseif($this->var['thread_sticky'] == 2)
|
||||
{
|
||||
$ICON = IMAGE_announce;
|
||||
}
|
||||
elseif(!$this->var['thread_active'])
|
||||
{
|
||||
$ICON = IMAGE_closed;
|
||||
}
|
||||
|
||||
return $ICON;
|
||||
}
|
||||
|
||||
|
||||
// @todo new forum shortcodes
|
||||
|
||||
function sc_forum_name($parm=null)
|
||||
{
|
||||
@@ -148,11 +209,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
function sc_breadcrumb()
|
||||
{
|
||||
return $this->var['breadcrumb'];
|
||||
|
Reference in New Issue
Block a user