Test more classes with objectManager

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-03-24 02:04:16 +00:00
committed by WineHQ
parent 7f397c1dc4
commit 7d6772b5b1
4 changed files with 81 additions and 52 deletions

View File

@@ -825,9 +825,15 @@ class Application {
return $sResult;
}
function objectMakeUrl()
{
$sUrl = BASE."appview.php?iAppId=$this->iAppId";
return $sUrl;
}
function objectMakeLink()
{
$sLink = "<a href=\"".BASE."appview.php?iAppId=$this->iAppId\">".
$sLink = "<a href=\"".$this->objectMakeUrl()."\">".
$this->sName."</a>";
return $sLink;
}