Add multi-page control to list of un-queued testData

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-06-12 00:02:41 +00:00
committed by WineHQ
parent 956186d1c1
commit ffd812b8a6
4 changed files with 56 additions and 12 deletions

View File

@@ -122,9 +122,14 @@ class testData_queue
$this->oTestData->objectDisplayAddItemHelp();
}
function objectGetEntries($bQueued, $bRejected)
function objectGetEntries($bQueued, $bRejected, $iRows = 0, $iStart = 0, $sOrderBy = "testingId")
{
return $this->oTestData->objectGetEntries($bQueued, $bRejected);
return $this->oTestData->objectGetEntries($bQueued, $bRejected, $iRows, $iStart, $sOrderBy);
}
function objectGetEntriesCount($bQueued, $bRejected)
{
return testData::objectGetEntriesCount($bQueued, $bRejected);
}
function objectGetHeader()
@@ -168,6 +173,11 @@ class testData_queue
{
return testData::allowAnonymousSubmissions();
}
function objectGetItemsPerPage($bQueued = false)
{
return testData::objectGetItemsPerPage($bQueued);
}
}
?>