Merge pull request #19017 from eileenmcnaughton/remove_recur
[civicrm-core.git] / CRM / Utils / JSON.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
19 * Class handles functions for JSON format
20 */
21class CRM_Utils_JSON {
22
a63c07d9 23 /**
fe482240 24 * Output json to the client.
a63c07d9
CW
25 * @param mixed $input
26 */
00be9182 27 public static function output($input) {
d7512022
MD
28 if (CIVICRM_UF === 'UnitTests') {
29 throw new CRM_Core_Exception_PrematureExitException('civiExit called', $input);
30 }
d42a224c 31 CRM_Utils_System::setHttpHeader('Content-Type', 'application/json');
fc7897b8
CW
32 echo json_encode($input);
33 CRM_Utils_System::civiExit();
a63c07d9
CW
34 }
35
d66880ec
JG
36 /**
37 * Test whether the input string is valid JSON.
38 * @param string $str
39 * @return boolean
40 */
41 public static function isValidJSON($str) {
42 json_decode($str);
43 return json_last_error() == JSON_ERROR_NONE;
44 }
45
24df2136 46 /**
0dc4289e 47 * Do not use this function. See CRM-16353.
42e397d3 48 * @deprecated
24df2136 49 *
77855840
TO
50 * @param array $params
51 * Associated array of row elements.
52 * @param int $sEcho
53 * Datatable needs this to make it more secure.
54 * @param int $iTotal
55 * Total records.
56 * @param int $iFilteredTotal
57 * Total records on a page.
58 * @param array $selectorElements
59 * Selector elements.
24df2136 60 * @return string
24df2136 61 */
00be9182 62 public static function encodeDataTableSelector($params, $sEcho, $iTotal, $iFilteredTotal, $selectorElements) {
6a488035
TO
63 $sOutput = '{';
64 $sOutput .= '"sEcho": ' . intval($sEcho) . ', ';
65 $sOutput .= '"iTotalRecords": ' . $iTotal . ', ';
66 $sOutput .= '"iTotalDisplayRecords": ' . $iFilteredTotal . ', ';
67 $sOutput .= '"aaData": [ ';
697f11ef 68 foreach ((array) $params as $key => $value) {
6a488035
TO
69 $addcomma = FALSE;
70 $sOutput .= "[";
71 foreach ($selectorElements as $element) {
72 if ($addcomma) {
73 $sOutput .= ",";
74 }
50bfb460
SB
75 // CRM-7130 --lets addslashes to only double quotes,
76 // since we are using it to quote the field value.
77 // str_replace helps to provide a break for new-line
be2fb01f 78 $sOutput .= '"' . addcslashes(str_replace(["\r\n", "\n", "\r"], '<br />', $value[$element]), '"\\') . '"';
6a488035 79
50bfb460 80 // remove extra spaces and tab character that breaks dataTable CRM-12551
353ffa53 81 $sOutput = preg_replace("/\s+/", " ", $sOutput);
6a488035
TO
82 $addcomma = TRUE;
83 }
84 $sOutput .= "],";
85 }
86 $sOutput = substr_replace($sOutput, "", -1);
87 $sOutput .= '] }';
88
89 return $sOutput;
90 }
96025800 91
6a488035 92}