From 2bb3609dd0ecbe7b2d77d2fef578465c70404814 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Mon, 14 Dec 2020 15:42:55 +1100 Subject: [PATCH] REF Migrate the print_array smarty plugin from in packages into core as it seems to not be supplied by the upstream package --- .../Smarty/plugins/modifier.print_array.php | 106 ++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 CRM/Core/Smarty/plugins/modifier.print_array.php diff --git a/CRM/Core/Smarty/plugins/modifier.print_array.php b/CRM/Core/Smarty/plugins/modifier.print_array.php new file mode 100644 index 000000000000..8ec0cc4035c4 --- /dev/null +++ b/CRM/Core/Smarty/plugins/modifier.print_array.php @@ -0,0 +1,106 @@ + + * Name: print_array
+ * Purpose: formats array for output in DAO files and in APIv3 Examples + * To find where this is used do a grep in Smarty templates for |@print_array + * @param array|object $var + * @param integer $depth + * @param integer $length + * @return string + */ +function smarty_modifier_print_array($var, $depth = 0, $length = 40) { + + switch (gettype($var)) { + case 'array': + $results = "array(\n"; + foreach ($var as $curr_key => $curr_val) { + $depth++; + $results .= str_repeat(' ', ($depth + 1)) + . "'" . $curr_key . "' => " + . smarty_modifier_print_array($curr_val, $depth, $length) . ",\n"; + $depth--; + } + $results .= str_repeat(' ', ($depth + 1)) . ")"; + break; + + case 'object': + $object_vars = get_object_vars($var); + $results = get_class($var) . ' Object (' . count($object_vars) . ')'; + foreach ($object_vars as $curr_key => $curr_val) { + $depth++; + $results .= str_repeat('', $depth + 1) + . '->' . $curr_key . ' = ' + . smarty_modifier_debug_print_var($curr_val, $depth, $length); + $depth--; + } + break; + + case 'boolean': + case 'NULL': + case 'resource': + if (TRUE === $var) { + $results .= 'TRUE'; + } + elseif (FALSE === $var) { + $results .= 'FALSE'; + } + elseif (NULL === $var) { + $results .= ''; + } + else { + $results = $var; + } + $results = $results; + break; + + case 'integer': + case 'float': + $results = $var; + break; + + case 'string': + if (strlen($var) > $length) { + $results = substr($var, 0, $length - 3) . '...'; + } + $results = "'" . $var . "'"; + break; + + case 'unknown type': + default: + if (strlen($results) > $length) { + $results = substr($results, 0, $length - 3) . '...'; + } + $results = "'" . $var . "'"; + } + if (empty($var)) { + if (is_array($var)) { + $results = "array()"; + } + elseif ($var === '0' || $var === 0) { + $results = 0; + } + else { + $results = "''"; + } + } + return $results; +}