* change copyright time.

This commit is contained in:
wangchunsheng
2013-01-18 01:18:58 +00:00
parent 2f3e8f2c70
commit 48d43cb5e1
409 changed files with 58058 additions and 58058 deletions
+24 -24
View File
@@ -1,24 +1,24 @@
<?php
/**
* The export2csv view file of file module of ZenTaoPMS.
*
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (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
*/
?>
<?php
echo '"'. implode('","', $fields) . '"' . "\n";
foreach($rows as $row)
{
echo '"';
foreach($fields as $fieldName => $fieldLabel)
{
isset($row->$fieldName) ? print(strip_tags($row->$fieldName)) : print('');
echo '","';
}
echo '"' . "\n";
}
<?php
/**
* The export2csv view file of file module of ZenTaoPMS.
*
* @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (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
*/
?>
<?php
echo '"'. implode('","', $fields) . '"' . "\n";
foreach($rows as $row)
{
echo '"';
foreach($fields as $fieldName => $fieldLabel)
{
isset($row->$fieldName) ? print(strip_tags($row->$fieldName)) : print('');
echo '","';
}
echo '"' . "\n";
}