mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 20:00:37 +02:00
Avatar shortcode for forum_template
Displays the avatar for the last post user
This commit is contained in:
@@ -699,4 +699,8 @@ $gen = new convert;
|
|||||||
return $frm->breadcrumb($breadarray);
|
return $frm->breadcrumb($breadarray);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function sc_avatar($opts)
|
||||||
|
{
|
||||||
|
return e107::getParser()->toAvatar(e107::user($this->var['forum_lastpost_user']),$opts);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -888,5 +888,19 @@ $LASTPOSTUSER = $this->var['lastpost_username'];
|
|||||||
}
|
}
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
function sc_avatar($opts)
|
||||||
|
{
|
||||||
|
if (isset($this->var['thread_id']))
|
||||||
|
{
|
||||||
|
return e107::getParser()->toAvatar(e107::user($this->var['thread_lastuser']),$opts);
|
||||||
|
}
|
||||||
|
elseif (isset($this->var['forum_id']))
|
||||||
|
{
|
||||||
|
return e107::getParser()->toAvatar(e107::user($this->var['forum_lastpost_user']),$opts);
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
// return print_r($this->var);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
Reference in New Issue
Block a user