3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
29 * Class CRM_Core_Report_Excel
31 class CRM_Core_Report_Excel
{
34 * Code copied from phpMyAdmin (v2.6.1-pl3)
35 * File: PHPMYADMIN/libraries/export/csv.php
36 * Function: PMA_exportData
38 * Outputs a result set with a given header
39 * in the string buffer result
41 * @param string $header
42 * (reference ) column headers.
44 * (reference ) result set rows.
45 * @param null $titleHeader
47 * Should the output be printed.
48 * @param bool $outputHeader
51 * empty if output is printed, else output
54 public static function makeCSVTable(&$header, &$rows, $titleHeader = NULL, $print = TRUE, $outputHeader = TRUE) {
61 $config = CRM_Core_Config
::singleton();
62 $seperator = $config->fieldSeparator
;
65 $add_character = "\015\012";
68 foreach ($header as $field) {
69 if ($enclosed == '') {
70 $schema_insert .= stripslashes($field);
73 $schema_insert .= $enclosed . str_replace($enclosed, $escaped . $enclosed, stripslashes($field)) . $enclosed;
75 $schema_insert .= $seperator;
80 // need to add PMA_exportOutputHandler functionality out here, rather than
81 // doing it the moronic way of assembling a buffer
82 $out = trim(substr($schema_insert, 0, -1)) . $add_character;
91 $fields_cnt = count($header);
92 foreach ($rows as $row) {
96 foreach ($row as $j => $value) {
97 if (!isset($value) ||
is_null($value)) {
100 elseif ($value == '0' ||
$value != '') {
101 // loic1 : always enclose fields
102 //$value = ereg_replace("\015(\012)?", "\012", $value);
103 $value = preg_replace("/\015(\012)?/", "\012", $value);
104 if ($enclosed == '') {
105 $schema_insert .= $value;
108 if ((substr($value, 0, 1) == CRM_Core_DAO
::VALUE_SEPARATOR
) &&
109 (substr($value, -1, 1) == CRM_Core_DAO
::VALUE_SEPARATOR
)
112 $strArray = explode(CRM_Core_DAO
::VALUE_SEPARATOR
, $value);
114 foreach ($strArray as $key => $val) {
115 if (trim($val) == '') {
116 unset($strArray[$key]);
120 $str = implode($seperator, $strArray);
124 $schema_insert .= $enclosed . str_replace($enclosed, $escaped . $enclosed, $value) . $enclosed;
128 $schema_insert .= '';
131 if ($colNo < $fields_cnt - 1) {
132 $schema_insert .= $seperator;
138 $out = $schema_insert . $add_character;
156 * @param string $fileName
159 * @param null $titleHeader
160 * @param bool $outputHeader
162 public function writeHTMLFile($fileName, &$header, &$rows, $titleHeader = NULL, $outputHeader = TRUE) {
164 CRM_Utils_System
::download(CRM_Utils_String
::munge($fileName),
165 'application/vnd.ms-excel',
166 CRM_Core_DAO
::$_nullObject,
172 echo "<table><thead><tr>";
173 foreach ($header as $field) {
174 echo "<th>$field</th>";
176 echo "</tr></thead><tbody>";
178 foreach ($rows as $row) {
182 foreach ($row as $j => $value) {
183 echo "<td>" . htmlentities($value, ENT_COMPAT
, 'UTF-8') . "</td>";
188 echo "</tbody></table>";
192 * Write a CSV file to the browser output.
194 * @param string $fileName
195 * The name of the file that will be downloaded (this is sent to the browser).
196 * @param array $header
197 * An array of the headers.
199 * An array of arrays of the table contents.
200 * @param string $titleHeader
201 * If set this will be the title in the CSV.
202 * @param bool $outputHeader
203 * Should we output the header row.
204 * @param bool $saveFile
209 public static function writeCSVFile($fileName, &$header, &$rows, $titleHeader = NULL, $outputHeader = TRUE, $saveFile = NULL) {
210 if ($outputHeader && !$saveFile) {
211 CRM_Utils_System
::download(CRM_Utils_String
::munge($fileName),
213 CRM_Core_DAO
::$_nullObject,
224 return self
::makeCSVTable($header, $rows, $titleHeader, $print, $outputHeader);