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

@@ -24,7 +24,7 @@ class testData{
var $sQueued;
// constructor, fetches the data.
function testData($iTestingId = null)
function testData($iTestingId = null, $oRow = null)
{
// we are working on an existing test
if($iTestingId)
@@ -895,6 +895,25 @@ class testData{
echo "<p>To view a submission, click on its name. From that page ".
"you can submit it into the AppDB, reject it or delete it.</p>\n";
}
function display()
{
/* STUB */
return TRUE;
}
function objectMakeUrl()
{
/* STUB */
return TRUE;
}
function objectMakeLink()
{
/* STUB */
return TRUE;
}
}
?>