, Jam Warehouse (Pty) Ltd, South Africa
* @package presentation
*/
function startTable($border, $width) {
return "
\n";
}
function tableCaption($sCaption) {
return "$sCaption\n";
}
function stopTable() {
return "
\n";
}
function tableRow($align, $bgcolor, $html) {
return "$html
\n";
}
function tableHeading($cssClassName, $colspan, $text) {
return "\n
$text\n
| \n";
}
function tableData($html, $iColspan = 1) {
return "$html | \n";
}
function tableCssData($html, $cssClass) {
return "$html | \n";
}
function startTableRowCell() {
return "| \n";
}
function textInput($sId, $sValue) {
return "\n";
}
function endTableRowCell() {
return " |
\n";
}
function generateImage($sImageSource) {
return "
";
}
function getNumberStringValidationJavaScript() {
return "\n";
}
?>