dwh/template/index_ajax_template.php
Daeng Deni Mardaeni 5321a5434b first commit
2023-10-02 17:26:17 +07:00

26 lines
820 B
PHP

<?php
$index_ajax_template_array['CONTAINER'] = <<< container
<table border=1 cellspacing=0 cellpadding=4 bgcolor="#ffffff" style="border-collapse:collapse; text-align:left" width="100%">
<tr bgcolor="#ffffff"><td class=font16B colspan=9>&#187; <<REP_GROUP>> &#171;</td></tr>
<tr bgcolor="#ffffff">
<th align=center>NO.</th>
<th align=center>NAMA LAPORAN</th>
<th align=center>TANGGAL</th>
</tr>
<tr bgcolor="#ffffff">
<<ELEMENT>>
</tr>
<tr bgcolor="#ffffff"><td class=font16B colspan=9 height=20></td></tr>
</table>
container;
$index_ajax_template_array['ELEMENT'] = <<< element
<tr TITLE="<<REP_ID>>" onmouseover="changeColor(this,'#FFFF99');" onmouseout="changeColor(this,'#F7F7F7');">
<td align=right><<COUNTER>>.</td>
<td align=left><<REP_NAME>></td>
<td><<TGL_CETAK>></td>
</tr>
element;
?>