Add user::objectMakeLink(), used by appData and testData objectOutputTableRow()

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-03-25 16:03:35 +00:00
committed by WineHQ
parent 558ff17e36
commit fa3872b256
2 changed files with 13 additions and 2 deletions

View File

@@ -1043,6 +1043,18 @@ class User {
return false;
}
function objectMakeUrl()
{
$sUrl = BASE."contact.php?iRecipientId=$this->iUserId";
return $sUrl;
}
function objectMakeLink()
{
$sLink = "<a href=\"".$this->objectMakeUrl()."\">$this->sRealname</a>";
return $sLink;
}
}
?>