Merge pull request #22483 from eileenmcnaughton/token1
[civicrm-core.git] / CRM / Core / Smarty / plugins / function.crmAttributes.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
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 |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC
16 *
17 */
18
19 /**
20 * Formats an array of attributes as html
21 *
22 * @param array $params
23 * ['a'] array of attributes.
24 * @param CRM_Core_Smarty $smarty
25 *
26 * @return string
27 */
28 function smarty_function_crmAttributes($params, &$smarty) {
29 $attributes = $params['a'] ?? [];
30 return CRM_Utils_String::htmlAttributes($attributes);
31 }