|
|
|
@@ -13,11 +13,12 @@
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
|
include_once(e_HANDLER.'shortcode_handler.php');
|
|
|
|
|
$user_shortcodes = $tp -> e_sc -> parse_scbatch(__FILE__);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
SC_BEGIN TOTAL_CHATPOSTS
|
|
|
|
|
|
|
|
|
|
class user_shortcodes extends e_shortcode
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
function sc_total_chatposts($parm) {
|
|
|
|
|
global $sql;
|
|
|
|
|
if(!$chatposts = getcachedvars('total_chatposts'))
|
|
|
|
|
{
|
|
|
|
@@ -29,9 +30,12 @@ if(!$chatposts = getcachedvars('total_chatposts'))
|
|
|
|
|
cachevars('total_chatposts', $chatposts);
|
|
|
|
|
}
|
|
|
|
|
return $chatposts;
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN TOTAL_COMMENTPOSTS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_total_commentposts($parm)
|
|
|
|
|
{
|
|
|
|
|
global $sql;
|
|
|
|
|
if(!$commentposts = getcachedvars('total_commentposts'))
|
|
|
|
|
{
|
|
|
|
@@ -39,9 +43,12 @@ if(!$commentposts = getcachedvars('total_commentposts'))
|
|
|
|
|
cachevars('total_commentposts', $commentposts);
|
|
|
|
|
}
|
|
|
|
|
return $commentposts;
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN TOTAL_FORUMPOSTS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_total_forumposts($parm)
|
|
|
|
|
{
|
|
|
|
|
global $sql;
|
|
|
|
|
if(!$forumposts = getcachedvars('total_forumposts'))
|
|
|
|
|
{
|
|
|
|
@@ -49,31 +56,37 @@ if(!$forumposts = getcachedvars('total_forumposts'))
|
|
|
|
|
cachevars('total_forumposts', $forumposts);
|
|
|
|
|
}
|
|
|
|
|
return $forumposts;
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_COMMENTPOSTS
|
|
|
|
|
global $user;
|
|
|
|
|
return $user['user_comments'];
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_FORUMPOSTS
|
|
|
|
|
global $user;
|
|
|
|
|
return $user['user_forums'];
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_CHATPOSTS
|
|
|
|
|
global $user;
|
|
|
|
|
return $user['user_chats'];
|
|
|
|
|
SC_END
|
|
|
|
|
function sc_user_commentposts($parm)
|
|
|
|
|
{
|
|
|
|
|
return $this->var['user_comments'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_DOWNLOADS
|
|
|
|
|
global $sql,$user;
|
|
|
|
|
$downloads = $sql->db_Count("download_requests","(*)","where download_request_userid=".$user['user_id']);
|
|
|
|
|
return $downloads;
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_CHATPER
|
|
|
|
|
global $sql, $user;
|
|
|
|
|
|
|
|
|
|
function sc_user_forumposts($parm)
|
|
|
|
|
{
|
|
|
|
|
return $this->var['user_forums'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_chatposts($parm)
|
|
|
|
|
{
|
|
|
|
|
return $this->var['user_chats'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function sc_user_downloads($parm)
|
|
|
|
|
{
|
|
|
|
|
return e107::getDb()->db_Count("download_requests","(*)","where download_request_userid=".$this->var['user_id']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function sc_user_chatper($parm)
|
|
|
|
|
{
|
|
|
|
|
$sql = e107::getDb();
|
|
|
|
|
if(!$chatposts = getcachedvars('total_chatposts'))
|
|
|
|
|
{
|
|
|
|
|
$chatposts = 0; // In case plugin not installed
|
|
|
|
@@ -83,34 +96,43 @@ if(!$chatposts = getcachedvars('total_chatposts'))
|
|
|
|
|
}
|
|
|
|
|
cachevars('total_chatposts', $chatposts);
|
|
|
|
|
}
|
|
|
|
|
return ($chatposts!=0) ? round(($user['user_chats']/$chatposts) * 100, 2): 0;
|
|
|
|
|
SC_END
|
|
|
|
|
return ($chatposts!=0) ? round(($this->var['user_chats']/$chatposts) * 100, 2): 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_COMMENTPER
|
|
|
|
|
global $sql, $user;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_commentper($parm)
|
|
|
|
|
{
|
|
|
|
|
$sql = e107::getDb();
|
|
|
|
|
if(!$commentposts = getcachedvars('total_commentposts'))
|
|
|
|
|
{
|
|
|
|
|
$commentposts = $sql->db_Count("comments");
|
|
|
|
|
cachevars('total_commentposts', $commentposts);
|
|
|
|
|
}
|
|
|
|
|
return ($commentposts!=0) ? round(($user['user_comments']/$commentposts) * 100, 2): 0;
|
|
|
|
|
SC_END
|
|
|
|
|
return ($commentposts!=0) ? round(($this->var['user_comments']/$commentposts) * 100, 2): 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_FORUMPER
|
|
|
|
|
global $sql, $user;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_forumper($parm)
|
|
|
|
|
{
|
|
|
|
|
$sql = e107::getDb();
|
|
|
|
|
if(!$forumposts = getcachedvars('total_forumposts'))
|
|
|
|
|
{
|
|
|
|
|
$forumposts = (isset($pref['plug_installed']['forum'])) ? $sql->db_Count("forum_t"): 0;
|
|
|
|
|
cachevars('total_forumposts', $forumposts);
|
|
|
|
|
}
|
|
|
|
|
return ($forumposts!==0) ? round(($user['user_forums']/$forumposts) * 100, 2): 0;
|
|
|
|
|
SC_END
|
|
|
|
|
return ($forumposts!==0) ? round(($this->var['user_forums']/$forumposts) * 100, 2): 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_LEVEL
|
|
|
|
|
global $user, $pref;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_level($parm)
|
|
|
|
|
{
|
|
|
|
|
$pref = e107::getPref();
|
|
|
|
|
//FIXME - new level handler, currently commented to avoid parse errors
|
|
|
|
|
//require_once(e_HANDLER."level_handler.php");
|
|
|
|
|
//$ldata = get_level($user['user_id'], $user['user_forums'], $user['user_comments'], $user['user_chats'], $user['user_visits'], $user['user_join'], $user['user_admin'], $user['user_perms'], $pref);
|
|
|
|
|
//$ldata = get_level($this->var['user_id'], $this->var['user_forums'], $this->var['user_comments'], $this->var['user_chats'], $this->var['user_visits'], $this->var['user_join'], $this->var['user_admin'], $this->var['user_perms'], $pref);
|
|
|
|
|
$ldata = array();
|
|
|
|
|
if (strstr($ldata[0], "IMAGE_rank_main_admin_image"))
|
|
|
|
|
{
|
|
|
|
@@ -124,39 +146,51 @@ else
|
|
|
|
|
{
|
|
|
|
|
return $USER_LEVEL = $ldata[1];
|
|
|
|
|
}
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_LASTVISIT
|
|
|
|
|
global $user;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_lastvisit($parm)
|
|
|
|
|
{
|
|
|
|
|
$gen = new convert;
|
|
|
|
|
return $user['user_currentvisit'] ? $gen->convert_date($user['user_currentvisit'], "long") : "<i>".LAN_USER_33."</i>";
|
|
|
|
|
SC_END
|
|
|
|
|
return $this->var['user_currentvisit'] ? $gen->convert_date($this->var['user_currentvisit'], "long") : "<i>".LAN_USER_33."</i>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_LASTVISIT_LAPSE
|
|
|
|
|
global $user;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_lastvisit_lapse($parm)
|
|
|
|
|
{
|
|
|
|
|
$gen = new convert;
|
|
|
|
|
return $user['user_currentvisit'] ? "( ".$gen -> computeLapse($user['user_currentvisit'])." ".LAN_USER_34." )" : '';
|
|
|
|
|
SC_END
|
|
|
|
|
return $this->var['user_currentvisit'] ? "( ".$gen -> computeLapse($this->var['user_currentvisit'])." ".LAN_USER_34." )" : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_VISITS
|
|
|
|
|
global $user;
|
|
|
|
|
return $user['user_visits'];
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_JOIN
|
|
|
|
|
global $user;
|
|
|
|
|
|
|
|
|
|
function sc_user_visits($parm)
|
|
|
|
|
{
|
|
|
|
|
return $this->var['user_visits'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_join($parm)
|
|
|
|
|
{
|
|
|
|
|
$gen = new convert;
|
|
|
|
|
return $gen->convert_date($user['user_join'], "forum");
|
|
|
|
|
SC_END
|
|
|
|
|
return $gen->convert_date($this->var['user_join'], "forum");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_DAYSREGGED
|
|
|
|
|
global $user;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_daysregged($parm)
|
|
|
|
|
{
|
|
|
|
|
$gen = new convert;
|
|
|
|
|
return $gen -> computeLapse($user['user_join'])." ".LAN_USER_34;
|
|
|
|
|
SC_END
|
|
|
|
|
return $gen -> computeLapse($this->var['user_join'])." ".LAN_USER_34;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_REALNAME_ICON
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_realname_icon($parm)
|
|
|
|
|
{
|
|
|
|
|
if(defined("USER_REALNAME_ICON"))
|
|
|
|
|
{
|
|
|
|
|
return USER_REALNAME_ICON;
|
|
|
|
@@ -166,15 +200,19 @@ if(file_exists(THEME."images/user_realname.png"))
|
|
|
|
|
return "<img src='".THEME_ABS."images/user_realname.png' alt='' style='vertical-align:middle;' /> ";
|
|
|
|
|
}
|
|
|
|
|
return "<img src='".e_IMAGE_ABS."user_icons/user_realname.png' alt='' style='vertical-align:middle;' /> ";
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_REALNAME
|
|
|
|
|
global $user;
|
|
|
|
|
return $user['user_login'] ? $user['user_login'] : "<i>".LAN_USER_33."</i>";
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_EMAIL_ICON
|
|
|
|
|
|
|
|
|
|
function sc_user_realname($parm)
|
|
|
|
|
{
|
|
|
|
|
return $this->var['user_login'] ? $this->var['user_login'] : "<i>".LAN_USER_33."</i>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_email_icon($parm)
|
|
|
|
|
{
|
|
|
|
|
if(defined("USER_EMAIL_ICON"))
|
|
|
|
|
{
|
|
|
|
|
return USER_EMAIL_ICON;
|
|
|
|
@@ -184,19 +222,28 @@ if(file_exists(THEME."images/email.png"))
|
|
|
|
|
return "<img src='".THEME_ABS."images/email.png' alt='' style='vertical-align:middle;' /> ";
|
|
|
|
|
}
|
|
|
|
|
return "<img src='".e_IMAGE_ABS."generic/email.png' alt='' style='vertical-align:middle;' /> ";
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_EMAIL_LINK
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_email_link($parm)
|
|
|
|
|
{
|
|
|
|
|
global $user, $tp;
|
|
|
|
|
return ($user['user_hideemail'] && !ADMIN) ? "<i>".LAN_USER_35."</i>" : $tp->parseTemplate("{email={$user['user_email']}-link}");
|
|
|
|
|
SC_END
|
|
|
|
|
return ($this->var['user_hideemail'] && !ADMIN) ? "<i>".LAN_USER_35."</i>" : $tp->parseTemplate("{email={$this->var['user_email']}-link}");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_EMAIL
|
|
|
|
|
global $user,$tp;
|
|
|
|
|
return ($user['user_hideemail'] && !ADMIN) ? "<i>".LAN_USER_35."</i>" : $tp->toHTML($user['user_email'],"no_replace");
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_ICON
|
|
|
|
|
|
|
|
|
|
function sc_user_email($parm)
|
|
|
|
|
{
|
|
|
|
|
$tp = e107::getParser();
|
|
|
|
|
return ($this->var['user_hideemail'] && !ADMIN) ? "<i>".LAN_USER_35."</i>" : $tp->toHTML($this->var['user_email'],"no_replace");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_icon($parm)
|
|
|
|
|
{
|
|
|
|
|
if(defined("USER_ICON"))
|
|
|
|
|
{
|
|
|
|
|
return USER_ICON;
|
|
|
|
@@ -206,11 +253,14 @@ if(file_exists(THEME."images/user.png"))
|
|
|
|
|
return "<img src='".THEME_ABS."images/user.png' alt='' style='vertical-align:middle;' /> ";
|
|
|
|
|
}
|
|
|
|
|
return "<img src='".e_IMAGE_ABS."user_icons/user.png' alt='' style='vertical-align:middle;' /> ";
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_ICON_LINK
|
|
|
|
|
global $user;
|
|
|
|
|
$uparams = array('id' => $user['user_id'], 'name' => $user['user_name']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_icon_link($parm)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
$uparams = array('id' => $this->var['user_id'], 'name' => $this->var['user_name']);
|
|
|
|
|
$url = e107::getUrl();
|
|
|
|
|
if(defined("USER_ICON"))
|
|
|
|
|
{
|
|
|
|
@@ -225,34 +275,44 @@ else
|
|
|
|
|
$icon = "<img src='".e_IMAGE_ABS."user_icons/user.png' alt='' style='vertical-align:middle;' /> ";
|
|
|
|
|
}
|
|
|
|
|
return "<a href='".$url->create('user/profile/view', $uparams)."'>{$icon}</a>";
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_ID
|
|
|
|
|
global $user;
|
|
|
|
|
return $user['user_id'];
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_NAME
|
|
|
|
|
global $user;
|
|
|
|
|
return $user['user_name'];
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_NAME_LINK
|
|
|
|
|
global $user;
|
|
|
|
|
$uparams = array('id' => $user['user_id'], 'name' => $user['user_name']);
|
|
|
|
|
$url = e107::getUrl();
|
|
|
|
|
return "<a href='".$url->create('user/profile/view', $uparams)."'>".$user['user_name']."</a>";
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_LOGINNAME
|
|
|
|
|
global $user;
|
|
|
|
|
if(ADMIN && getperms("4")) {
|
|
|
|
|
return $user['user_loginname'];
|
|
|
|
|
}
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_BIRTHDAY_ICON
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_id($parm)
|
|
|
|
|
{
|
|
|
|
|
return $this->var['user_id'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_name($parm)
|
|
|
|
|
{
|
|
|
|
|
return $this->var['user_name'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_name_link($parm)
|
|
|
|
|
{
|
|
|
|
|
$uparams = array('id' => $this->var['user_id'], 'name' => $this->var['user_name']);
|
|
|
|
|
$url = e107::getUrl();
|
|
|
|
|
return "<a href='".$url->create('user/profile/view', $uparams)."'>".$this->var['user_name']."</a>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_loginname($parm)
|
|
|
|
|
{
|
|
|
|
|
if(ADMIN && getperms("4")) {
|
|
|
|
|
return $this->var['user_loginname'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_birthday_icon($parm)
|
|
|
|
|
{
|
|
|
|
|
if(defined("USER_BIRTHDAY_ICON"))
|
|
|
|
|
{
|
|
|
|
|
return USER_BIRTHDAY_ICON;
|
|
|
|
@@ -262,11 +322,13 @@ if(file_exists(THEME."images/user_birthday.png"))
|
|
|
|
|
return "<img src='".THEME_ABS."images/user_birthday.png' alt='' style='vertical-align:middle;' /> ";
|
|
|
|
|
}
|
|
|
|
|
return "<img src='".e_IMAGE_ABS."user_icons/user_birthday.png' alt='' style='vertical-align:middle;' /> ";
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_BIRTHDAY
|
|
|
|
|
global $user;
|
|
|
|
|
if ($user['user_birthday'] != "" && $user['user_birthday'] != "0000-00-00" && preg_match("/([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})/", $user['user_birthday'], $regs))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_birthday($parm)
|
|
|
|
|
{
|
|
|
|
|
if ($this->var['user_birthday'] != "" && $this->var['user_birthday'] != "0000-00-00" && preg_match("/([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})/", $this->var['user_birthday'], $regs))
|
|
|
|
|
{
|
|
|
|
|
return "$regs[3].$regs[2].$regs[1]";
|
|
|
|
|
}
|
|
|
|
@@ -274,39 +336,53 @@ else
|
|
|
|
|
{
|
|
|
|
|
return "<i>".LAN_USER_33."</i>";
|
|
|
|
|
}
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_SIGNATURE
|
|
|
|
|
global $tp, $user;
|
|
|
|
|
return $user['user_signature'] ? $tp->toHTML($user['user_signature'], TRUE) : "";
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_COMMENTS_LINK
|
|
|
|
|
global $user;
|
|
|
|
|
return $user['user_comments'] ? "<a href='".e_HTTP."userposts.php?0.comments.".$user['user_id']."'>".LAN_USER_36."</a>" : "";
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_FORUM_LINK
|
|
|
|
|
global $user;
|
|
|
|
|
return $user['user_forums'] ? "<a href='".e_HTTP."userposts.php?0.forums.".$user['user_id']."'>".LAN_USER_37."</a>" : "";
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_SENDPM
|
|
|
|
|
global $pref, $tp, $user;
|
|
|
|
|
if(isset($pref['plug_installed']['pm']) && ($user['user_id'] > 0))
|
|
|
|
|
{
|
|
|
|
|
return $tp->parseTemplate("{SENDPM={$user['user_id']}}");
|
|
|
|
|
}
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_RATING
|
|
|
|
|
global $pref, $user;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_signature($parm)
|
|
|
|
|
{
|
|
|
|
|
$tp = e107::getParser();
|
|
|
|
|
return $this->var['user_signature'] ? $tp->toHTML($this->var['user_signature'], TRUE) : "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_comments_link($parm)
|
|
|
|
|
{
|
|
|
|
|
return $this->var['user_comments'] ? "<a href='".e_HTTP."userposts.php?0.comments.".$this->var['user_id']."'>".LAN_USER_36."</a>" : "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_forum_link($parm)
|
|
|
|
|
{
|
|
|
|
|
global $user;
|
|
|
|
|
return $this->var['user_forums'] ? "<a href='".e_HTTP."userposts.php?0.forums.".$this->var['user_id']."'>".LAN_USER_37."</a>" : "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_sendpm($parm)
|
|
|
|
|
{
|
|
|
|
|
global $pref, $tp, $user;
|
|
|
|
|
if(isset($pref['plug_installed']['pm']) && ($this->var['user_id'] > 0))
|
|
|
|
|
{
|
|
|
|
|
return $tp->parseTemplate("{SENDPM={$this->var['user_id']}}");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_rating($parm)
|
|
|
|
|
{
|
|
|
|
|
$pref = e107::getPref();
|
|
|
|
|
if($pref['profile_rate'] && USER)
|
|
|
|
|
{
|
|
|
|
|
include_once(e_HANDLER."rate_class.php");
|
|
|
|
|
$rater = new rater;
|
|
|
|
|
$ret = "<span>";
|
|
|
|
|
if($rating = $rater->getrating('user', $user['user_id']))
|
|
|
|
|
if($rating = $rater->getrating('user', $this->var['user_id']))
|
|
|
|
|
{
|
|
|
|
|
$num = $rating[1];
|
|
|
|
|
for($i=1; $i<= $num; $i++)
|
|
|
|
@@ -314,45 +390,51 @@ if($pref['profile_rate'] && USER)
|
|
|
|
|
$ret .= "<img src='".e_IMAGE_ABS."user_icons/user_star.png' alt='' />";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(!$rater->checkrated('user', $user['user_id']))
|
|
|
|
|
if(!$rater->checkrated('user', $this->var['user_id']))
|
|
|
|
|
{
|
|
|
|
|
$ret .= " ".$rater->rateselect('', 'user', $user['user_id']);
|
|
|
|
|
$ret .= " ".$rater->rateselect('', 'user', $this->var['user_id']);
|
|
|
|
|
}
|
|
|
|
|
$ret .= "</span>";
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
return "";
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_UPDATE_LINK
|
|
|
|
|
global $user;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_update_link($parm)
|
|
|
|
|
{
|
|
|
|
|
$url = e107::getUrl();
|
|
|
|
|
if (USERID == $user['user_id'])
|
|
|
|
|
if (USERID == $this->var['user_id'])
|
|
|
|
|
{
|
|
|
|
|
//return "<a href='".$url->create('user/myprofile/edit')."'>".LAN_USER_38."</a>";
|
|
|
|
|
return "<a href='usersettings.php' alt=''>".LAN_USER_38."</a>"; // TODO: repair dirty fix for usersettings
|
|
|
|
|
}
|
|
|
|
|
else if(ADMIN && getperms("4") && !$user['user_admin'])
|
|
|
|
|
else if(ADMIN && getperms("4") && !$this->var['user_admin'])
|
|
|
|
|
{
|
|
|
|
|
return "<a href='".$url->create('user/profile/edit', array('id' => $user['user_id'], 'name' => $user['user_name']))."'>".LAN_USER_39."</a>";
|
|
|
|
|
return "<a href='".$url->create('user/profile/edit', array('id' => $this->var['user_id'], 'name' => $this->var['user_name']))."'>".LAN_USER_39."</a>";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_JUMP_LINK
|
|
|
|
|
global $sql, $user, $full_perms;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_jump_link($parm)
|
|
|
|
|
{
|
|
|
|
|
global $full_perms;
|
|
|
|
|
$sql = e107::getDb();
|
|
|
|
|
if (!$full_perms) return;
|
|
|
|
|
$url = e107::getUrl();
|
|
|
|
|
if(!$userjump = getcachedvars('userjump'))
|
|
|
|
|
{
|
|
|
|
|
// $sql->db_Select("user", "user_id, user_name", "`user_id` > ".intval($user['user_id'])." AND `user_ban`=0 ORDER BY user_id ASC LIMIT 1 ");
|
|
|
|
|
$sql->db_Select_gen("SELECT user_id, user_name FROM `#user` FORCE INDEX (PRIMARY) WHERE `user_id` > ".intval($user['user_id'])." AND `user_ban`=0 ORDER BY user_id ASC LIMIT 1 ");
|
|
|
|
|
// $sql->db_Select("user", "user_id, user_name", "`user_id` > ".intval($this->var['user_id'])." AND `user_ban`=0 ORDER BY user_id ASC LIMIT 1 ");
|
|
|
|
|
$sql->db_Select_gen("SELECT user_id, user_name FROM `#user` FORCE INDEX (PRIMARY) WHERE `user_id` > ".intval($this->var['user_id'])." AND `user_ban`=0 ORDER BY user_id ASC LIMIT 1 ");
|
|
|
|
|
if ($row = $sql->db_Fetch())
|
|
|
|
|
{
|
|
|
|
|
$userjump['next']['id'] = $row['user_id'];
|
|
|
|
|
$userjump['next']['name'] = $row['user_name'];
|
|
|
|
|
}
|
|
|
|
|
// $sql->db_Select("user", "user_id, user_name", "`user_id` < ".intval($user['user_id'])." AND `user_ban`=0 ORDER BY user_id DESC LIMIT 1 ");
|
|
|
|
|
$sql->db_Select_gen("SELECT user_id, user_name FROM `#user` FORCE INDEX (PRIMARY) WHERE `user_id` < ".intval($user['user_id'])." AND `user_ban`=0 ORDER BY user_id DESC LIMIT 1 ");
|
|
|
|
|
// $sql->db_Select("user", "user_id, user_name", "`user_id` < ".intval($this->var['user_id'])." AND `user_ban`=0 ORDER BY user_id DESC LIMIT 1 ");
|
|
|
|
|
$sql->db_Select_gen("SELECT user_id, user_name FROM `#user` FORCE INDEX (PRIMARY) WHERE `user_id` < ".intval($this->var['user_id'])." AND `user_ban`=0 ORDER BY user_id DESC LIMIT 1 ");
|
|
|
|
|
if ($row = $sql->db_Fetch())
|
|
|
|
|
{
|
|
|
|
|
$userjump['prev']['id'] = $row['user_id'];
|
|
|
|
@@ -368,43 +450,39 @@ else
|
|
|
|
|
{
|
|
|
|
|
return isset($userjump['next']['id']) ? "[ <a href='".$url->create('user/profile/view', $userjump['next'])."'>".$userjump['next']['name']."</a> ] ".LAN_USER_41." >>" : " ";
|
|
|
|
|
}
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_PICTURE
|
|
|
|
|
global $user;
|
|
|
|
|
if ($user['user_sess'] && file_exists(e_UPLOAD."avatars/".$user['user_sess']))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_picture($parm)
|
|
|
|
|
{
|
|
|
|
|
return "<img src='".e_UPLOAD_ABS."public/avatars/".$user['user_sess']."' alt='' />";
|
|
|
|
|
if ($this->var['user_sess'] && file_exists(e_MEDIA."avatars/".$this->var['user_sess']))
|
|
|
|
|
{
|
|
|
|
|
//return $tp->parseTemplate("{USER_AVATAR=".$this->var['user_image']."}", true);
|
|
|
|
|
return "<img src='".e_UPLOAD_ABS."public/avatars/".$this->var['user_sess']."' alt='' />";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return LAN_USER_42;
|
|
|
|
|
}
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_AVATAR
|
|
|
|
|
global $user, $tp;
|
|
|
|
|
if ($user['user_image'])
|
|
|
|
|
{
|
|
|
|
|
return $tp->parseTemplate("{USER_AVATAR=".$user['user_image']."}", true);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
|
|
|
|
|
/* sc_USER_AVATAR - see single/user_avatar.php */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_picture_name($parm)
|
|
|
|
|
{
|
|
|
|
|
return LAN_USER_42;
|
|
|
|
|
}
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_PICTURE_NAME
|
|
|
|
|
global $user;
|
|
|
|
|
if (ADMIN && getperms("4"))
|
|
|
|
|
{
|
|
|
|
|
return $user['user_sess'];
|
|
|
|
|
return $this->var['user_sess'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_PICTURE_DELETE
|
|
|
|
|
if (USERID == $user['user_id'] || (ADMIN && getperms("4")))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_picture_delete($parm)
|
|
|
|
|
{
|
|
|
|
|
if (USERID == $this->var['user_id'] || (ADMIN && getperms("4")))
|
|
|
|
|
{
|
|
|
|
|
return "
|
|
|
|
|
<form method='post' action='".e_SELF."?".e_QUERY."'>
|
|
|
|
@@ -412,11 +490,15 @@ if (USERID == $user['user_id'] || (ADMIN && getperms("4")))
|
|
|
|
|
</form>
|
|
|
|
|
";
|
|
|
|
|
}
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_EXTENDED_ALL
|
|
|
|
|
|
|
|
|
|
global $user, $tp, $sql;
|
|
|
|
|
|
|
|
|
|
function sc_user_extended_all($parm)
|
|
|
|
|
{
|
|
|
|
|
$sql = e107::getDb();
|
|
|
|
|
$tp = e107::getParser();
|
|
|
|
|
|
|
|
|
|
global $EXTENDED_CATEGORY_START, $EXTENDED_CATEGORY_END, $EXTENDED_CATEGORY_TABLE;
|
|
|
|
|
$qry = "SELECT f.*, c.user_extended_struct_name AS category_name, c.user_extended_struct_id AS category_id FROM #user_extended_struct as f
|
|
|
|
|
LEFT JOIN #user_extended_struct as c ON f.user_extended_struct_parent = c.user_extended_struct_id
|
|
|
|
@@ -435,7 +517,7 @@ $ret = "";
|
|
|
|
|
foreach($ueCatList as $catnum => $cat)
|
|
|
|
|
{
|
|
|
|
|
$key = $cat[0]['user_extended_struct_text'] ? $cat[0]['user_extended_struct_text'] : $cat[0]['user_extended_struct_name'];
|
|
|
|
|
$cat_name = $tp->parseTemplate("{USER_EXTENDED={$key}.text.{$user['user_id']}}", TRUE);
|
|
|
|
|
$cat_name = $tp->parseTemplate("{USER_EXTENDED={$key}.text.{$this->var['user_id']}}", TRUE);
|
|
|
|
|
if($cat_name != FALSE && count($ueFieldList[$catnum]))
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
@@ -443,14 +525,14 @@ foreach($ueCatList as $catnum => $cat)
|
|
|
|
|
foreach($ueFieldList[$catnum] as $f)
|
|
|
|
|
{
|
|
|
|
|
$key = $f['user_extended_struct_name'];
|
|
|
|
|
if($ue_name = $tp->parseTemplate("{USER_EXTENDED={$key}.text.{$user['user_id']}}", TRUE))
|
|
|
|
|
if($ue_name = $tp->parseTemplate("{USER_EXTENDED={$key}.text.{$this->var['user_id']}}", TRUE))
|
|
|
|
|
{
|
|
|
|
|
$extended_record = str_replace("EXTENDED_ICON","USER_EXTENDED={$key}.icon", $EXTENDED_CATEGORY_TABLE);
|
|
|
|
|
$extended_record = str_replace("{EXTENDED_NAME}", $tp->toHTML($ue_name,"","defs"), $extended_record);
|
|
|
|
|
$extended_record = str_replace("EXTENDED_VALUE","USER_EXTENDED={$key}.value.{$user['user_id']}", $extended_record);
|
|
|
|
|
$extended_record = str_replace("EXTENDED_VALUE","USER_EXTENDED={$key}.value.{$this->var['user_id']}", $extended_record);
|
|
|
|
|
if(HIDE_EMPTY_FIELDS === TRUE)
|
|
|
|
|
{
|
|
|
|
|
$this_value = $tp->parseTemplate("{USER_EXTENDED={$key}.value.{$user['user_id']}}", TRUE);
|
|
|
|
|
$this_value = $tp->parseTemplate("{USER_EXTENDED={$key}.value.{$this->var['user_id']}}", TRUE);
|
|
|
|
|
if($this_value != "")
|
|
|
|
|
{
|
|
|
|
|
$ret .= $tp->parseTemplate($extended_record, TRUE);
|
|
|
|
@@ -466,64 +548,41 @@ foreach($ueCatList as $catnum => $cat)
|
|
|
|
|
$ret .= $EXTENDED_CATEGORY_END;
|
|
|
|
|
}
|
|
|
|
|
return $ret;
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN PROFILE_COMMENTS
|
|
|
|
|
global $user, $pref, $sql, $ns;
|
|
|
|
|
if($pref['profile_comments'])
|
|
|
|
|
{
|
|
|
|
|
$ret = e107::getSingleton('comment')->compose_comment('profile', 'comment', $user['user_id'], null, $user['user_name'], FALSE,true);
|
|
|
|
|
|
|
|
|
|
return $ns->tablerender($ret['caption'],$ret['comment_form']. $ret['comment'], 'profile_comments', TRUE);
|
|
|
|
|
|
|
|
|
|
include_once(e_HANDLER."comment_class.php");
|
|
|
|
|
$cobj = new comment;
|
|
|
|
|
$qry = "
|
|
|
|
|
SELECT c.*, u.*, ue.* FROM #comments AS c
|
|
|
|
|
LEFT JOIN #user AS u ON c.comment_author_id = u.user_id
|
|
|
|
|
LEFT JOIN #user_extended AS ue ON c.comment_author_id = ue.user_extended_id
|
|
|
|
|
WHERE c.comment_item_id=".intval($user['user_id'])."
|
|
|
|
|
AND c.comment_type='profile'
|
|
|
|
|
AND c.comment_pid='0'
|
|
|
|
|
ORDER BY c.comment_datestamp
|
|
|
|
|
";
|
|
|
|
|
|
|
|
|
|
if($comment_total = $sql->db_Select_gen($qry))
|
|
|
|
|
{
|
|
|
|
|
while($row = $sql->db_Fetch())
|
|
|
|
|
{
|
|
|
|
|
$ret .= $cobj->render_comment($row);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $ns->tablerender(COMLAN_5, $ret, 'profile_comments', TRUE);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_profile_comments($parm)
|
|
|
|
|
{
|
|
|
|
|
if(e107::getPref('profile_comments'))
|
|
|
|
|
{
|
|
|
|
|
$ret = e107::getComment()->compose_comment('profile', 'comment', $this->var['user_id'], null, $this->var['user_name'], FALSE,true);
|
|
|
|
|
|
|
|
|
|
return e107::getRender()->tablerender($ret['caption'],$ret['comment_form']. $ret['comment'], 'profile_comments', TRUE);
|
|
|
|
|
}
|
|
|
|
|
return "";
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN PROFILE_COMMENT_FORM
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_profile_comment_form($parm) // deprecated.
|
|
|
|
|
{
|
|
|
|
|
return ;
|
|
|
|
|
|
|
|
|
|
global $pref, $user;
|
|
|
|
|
if($pref['profile_comments'])
|
|
|
|
|
{
|
|
|
|
|
include_once(e_HANDLER."comment_class.php");
|
|
|
|
|
$cobj = new comment;
|
|
|
|
|
$ret = "";
|
|
|
|
|
if(ADMIN === TRUE)
|
|
|
|
|
{
|
|
|
|
|
$ret .= "<a href='".e_BASE.e_ADMIN."modcomment.php?profile.{$user['user_id']}'>".COMLAN_314."</a><br /><br />";
|
|
|
|
|
}
|
|
|
|
|
$ret .= $cobj->form_comment("comment", "profile", $user['user_id'], $user['user_name'], "", TRUE);
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
SC_BEGIN TOTAL_USERS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_total_users($parm)
|
|
|
|
|
{
|
|
|
|
|
global $users_total;
|
|
|
|
|
return $users_total;
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_FORM_RECORDS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_form_records($parm)
|
|
|
|
|
{
|
|
|
|
|
global $records, $user_frm;
|
|
|
|
|
$ret = $user_frm->form_select_open("records");
|
|
|
|
|
for($i=10; $i<=30; $i+=10)
|
|
|
|
@@ -533,10 +592,11 @@ for($i=10; $i<=30; $i+=10)
|
|
|
|
|
}
|
|
|
|
|
$ret .= $user_frm->form_select_close();
|
|
|
|
|
return $ret;
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_FORM_ORDER
|
|
|
|
|
function sc_user_form_order($parm)
|
|
|
|
|
{
|
|
|
|
|
global $order;
|
|
|
|
|
if ($order == "ASC")
|
|
|
|
|
{
|
|
|
|
@@ -553,26 +613,36 @@ else
|
|
|
|
|
</select>";
|
|
|
|
|
}
|
|
|
|
|
return $ret;
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_FORM_START
|
|
|
|
|
function sc_user_form_start($parm)
|
|
|
|
|
{
|
|
|
|
|
global $from;
|
|
|
|
|
return "
|
|
|
|
|
<form method='post' action='".e_SELF."'>
|
|
|
|
|
<p><input type='hidden' name='from' value='$from' /></p>
|
|
|
|
|
";
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_FORM_END
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_form_end($parm)
|
|
|
|
|
{
|
|
|
|
|
return "</form>";
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_FORM_SUBMIT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_form_submit($parm)
|
|
|
|
|
{
|
|
|
|
|
return "<input class='button' type='submit' name='submit' value='".LAN_USER_47."' />";
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_EMBED_USERPROFILE
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sc_user_embed_userprofile($parm)
|
|
|
|
|
{
|
|
|
|
|
global $pref, $USER_EMBED_USERPROFILE_TEMPLATE, $embed_already_rendered;
|
|
|
|
|
|
|
|
|
|
//if no parm, it means we render ALL embedded contents
|
|
|
|
@@ -648,12 +718,16 @@ foreach($arr as $data){
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $ret;
|
|
|
|
|
SC_END
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SC_BEGIN USER_CUSTOMTITLE
|
|
|
|
|
global $user;
|
|
|
|
|
return $user['user_customtitle'];
|
|
|
|
|
SC_END
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
function sc_user_customtitle($parm)
|
|
|
|
|
{
|
|
|
|
|
return $this->var['user_customtitle'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
?>
|