browse by developer: Change column order

This commit is contained in:
Alexander Nicolaysen Sørnes
2008-06-15 21:07:28 +02:00
committed by Chris Morgan
parent b26be59533
commit c293db6d51

View File

@@ -271,15 +271,14 @@ class Vendor {
function objectGetHeader() function objectGetHeader()
{ {
$oTableRow = new TableRowSortable(); $oTableRow = new TableRowSortable();
$oTableRow->AddSortableTextCell('Name', 'vendorName'); $oTableRow->AddSortableTextCell('Name', 'vendorName');
$oTableRow->AddTextCell("Website"); $oTableCell = new TableCell('Applications');
$oTableCell = new TableCell("Linked apps");
$oTableCell->SetAlign("right");
$oTableRow->AddCell($oTableCell); $oTableRow->AddCell($oTableCell);
$oTableRow->AddTextCell("Website");
return $oTableRow; return $oTableRow;
} }
@@ -292,12 +291,11 @@ class Vendor {
$oTableRow = new TableRow(); $oTableRow = new TableRow();
$oTableRow->AddTextCell($this->objectMakeLink()); $oTableRow->AddTextCell($this->objectMakeLink());
$oTableCell = new TableCell($this->sWebpage); $oTableCell = new TableCell(sizeof($this->aApplicationsIds));
$oTableCell->SetCellLink($this->sWebpage);
$oTableRow->AddCell($oTableCell); $oTableRow->AddCell($oTableCell);
$oTableCell = new TableCell(sizeof($this->aApplicationsIds)); $oTableCell = new TableCell($this->sWebpage);
$oTableCell->SetAlign("right"); $oTableCell->SetCellLink($this->sWebpage);
$oTableRow->AddCell($oTableCell); $oTableRow->AddCell($oTableCell);
// create the object manager specific row // create the object manager specific row