, Jam Warehouse (Pty) Ltd, South Africa
* @package presentation
*/
function startTable($border, $width) {
return "
";
}
function stopTable() {
return "
";
}
function tableRow($align, $bgcolor, $html) {
return "$html
";
}
function tableHeading($cssClassName, $colspan, $text) {
return "
$text
| ";
}
function tableData($html) {
return "$html | ";
}
function startTableRowCell() {
return "| ";
}
function endTableRowCell() {
return " |
";
}
function generateLink($sTargetPage, $sQueryString, $sLinkText) {
return "$sLinkText";
}
?>