* rewrite the export feature of csv, html and xml.

This commit is contained in:
wangchunsheng
2011-05-02 09:03:20 +00:00
parent a6fd343d4b
commit fa9011fcb2
5 changed files with 142 additions and 64 deletions
+43
View File
@@ -0,0 +1,43 @@
<?php
/**
* The export2html view file of file module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Congzhi Chen <congzhi@cnezsoft.com>
* @package file
* @version $Id$
* @link http://www.zentao.net
*/
?>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<style>
table, th, td{font-size:12px; border:1px solid gray; border-collapse:collapse;}
</style>
<title><?php echo $fileName;?></title>
<body>
<table>
<tr>
<?php
foreach($fields as $fieldLabel)
{
echo "<th><nobr>$fieldLabel</nobr></th>\n";
}
?>
</tr>
<?php
foreach($rows as $row)
{
echo "<tr>\n";
foreach($row as $fieldName => $fieldValue)
{
echo "<td>$fieldValue</td>\n";
}
echo "</tr>\n";
}
?>
</table>
</body>
</html>