objectGetHeader() should return a TableRow instance as this is closer to what the information
represents and is a much more useful form.
This commit is contained in:
@@ -884,13 +884,12 @@ class Application {
|
||||
|
||||
function objectGetHeader()
|
||||
{
|
||||
$aCells = array(
|
||||
"Submission Date",
|
||||
"Submitter",
|
||||
"Vendor",
|
||||
"Application");
|
||||
|
||||
return $aCells;
|
||||
$oTableRow = new TableRow();
|
||||
$oTableRow->AddTextCell("Submission Date");
|
||||
$oTableRow->AddTextCell("Submitter");
|
||||
$oTableRow->AddTextCell("Vendor");
|
||||
$oTableRow->AddTextCell("Application");
|
||||
return $oTableRow;
|
||||
}
|
||||
|
||||
function objectGetTableRow()
|
||||
|
||||
Reference in New Issue
Block a user