iUserId);
if(!$oUser->isLoggedIn())
util_show_error_page_and_exit("You need to log in to view your queued items.");
apidb_header("View Your Queued Items");
/* Test data */
if($sResult = testData::listSubmittedBy($oUser->iUserId))
{
echo html_frame_start("Your Queued Test Results","90%");
echo $sResult;
echo html_frame_end(" ");
}
else
echo "You have no queued test results.
\n";
/* Applications */
if($sResult = Application::listSubmittedBy($oUser->iUserId))
{
echo html_frame_start("Your Queued Applications","90%");
echo $sResult;
echo html_frame_end(" ");
} else
echo "You have no queued applications.
\n";
/* Versions */
if($sResult = Version::listSubmittedBy($oUser->iUserId))
{
echo html_frame_start("Your Queued Versions","90%");
echo $sResult;
echo html_frame_end(" ");
} else
echo "You have no queued versions.
\n";
/* Bug links */
if($sResult = bug::listSubmittedBy($oUser->iUserId))
{
echo html_frame_start("Your Queued Bug Links","90%");
echo $sResult;
echo html_frame_end(" ");
} else
echo "You have no queued bugs.
\n";
/* Application data */
if($sResult = appData::listSubmittedBy($oUser->iUserId))
{
echo html_frame_start("Your Queued Application Data","90%");
echo $sResult;
echo html_frame_end(" ");
} else
echo "You have no queued application data.
\n";
apidb_footer();
?>