00022 {
00023 $data =&
getDataInstance();
00024
$db =&
getDbReaderInstance();
00025 $id = $data->getAppData('detailId');
00026 $l10n = $data->getAppData('l10n');
00027 $back =
$db->getTemplateContent('product-detail2-back', $l10n);
00028 $rP =
new JuelichRendererProduct;
00029 $content = $rP->renderProductDetail($
id);
00030
00031
$tpl = '<html>
00032 <head>
00033 <title>%s</title>
00034 <style type=
"text/css">
00035 body { font-family: Arial, Helvetica, sans-serif; text-decoration:none; font-size: 25pt; }
00036 </style>
00037 </head>
00038 <body bgcolor=
"#ffffff">
00039 <table border=
"0" cellspacing=
"1" cellpadding=
"0" bgcolor=
"#cdcdcd">
00040 <tr>
00041 <td>
00042 %s
00043 </td>
00044 </tr>
00045 </table>
00046 %s
00047 </body>
00048 </html>
00049 ';
00050
00051
return sprintf($tpl,
00052 $data->getAppData('title'),
00053 $content,
00054 $back);
00055 }