Alexander Nicolaysen Sørnes <alex@thehandofagony.com>

Let objectManager handle deletion and delete notification.
This commit is contained in:
Chris Morgan
2007-09-14 23:02:12 -04:00
parent e3ca73f7df
commit 2827e0654e
21 changed files with 958 additions and 212 deletions

View File

@@ -98,6 +98,30 @@ class browse_newest_apps
return array($aItemsPerPage, $iDefaultPerPage);
}
function objectGetChildren()
{
$oApp = new application($this->iAppId);
return $oApp->objectGetChildren();
}
function objectGetSubmitterId()
{
$oApp = new application($this->iAppId);
return $oApp->objectGetSubmitterId();
}
function objectGetMailOptions($sAction, $bMailSubmitter, $bParentAction)
{
$oApp = new application($this->iAppId);
return $oApp->objectGetMailOptions($sAction, $bMailSubmitter, $bParentAction);
}
function objectGetMail($sAction, $bMailSubmitter, $bParentAction)
{
$oApp = new application($this->iAppId);
return $oApp->objectGetMail($sAction, $bMailSubmitter, $bParentAction);
}
function objectGetId()
{
return $this->iAppId;