Hauptseite | Alphabetische Liste | Auflistung der Klassen | Auflistung der Dateien | Klassen-Elemente | Datei-Elemente

JuelichPageDetail2.php

gehe zur Dokumentation dieser Datei
00001 <?php 00002 require_once TM_PATH . 'juelich/JuelichGlobals.php'; 00003 require_once TM_PATH . 'juelich/web/JuelichRendererProduct.php'; 00004 00015 class JuelichPageDetail2 { 00016 00022 function getPageContent() { 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 } 00056 00057 } 00058 ?>

Erzeugt am Sun May 14 02:49:08 2006 für JuelichWeb von doxygen 1.3.8