Merge pull request #23702 from colemanw/loadingPlaceholders
[civicrm-core.git] / CRM / Core / Smarty / plugins / function.crmResPath.php
CommitLineData
b698e2d5
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
b698e2d5 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 |
b698e2d5
TO
9 +--------------------------------------------------------------------+
10 */
11
12/**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC
b698e2d5
TO
16 *
17 */
18
19/**
20 * Determine the path of a resource file
21 *
22 * @param array $params
502492c2
TO
23 * Identify the resource by either 'ext'+'file' or 'expr'.
24 *
b698e2d5
TO
25 * Array with keys:
26 * - ext: string, extension name. see CRM_Core_Resources::getPath
27 * - file: string, relative file path. see CRM_Core_Resources::getPath
502492c2 28 * - expr: string, a dynamic path expression. See: \Civi\Core\Paths::getPath()
b698e2d5
TO
29 * @param CRM_Core_Smarty $smarty
30 *
31 * @return string
32 */
33function smarty_function_crmResPath($params, &$smarty) {
502492c2
TO
34 if (!empty($params['expr'])) {
35 return Civi::paths()->getPath($params['expr']);
36 }
37
b698e2d5
TO
38 $res = CRM_Core_Resources::singleton();
39 if (!array_key_exists('ext', $params)) {
40 $params['ext'] = 'civicrm';
41 }
42 if (!array_key_exists('file', $params)) {
43 $params['file'] = NULL;
44 }
45 return $res->getPath($params['ext'], $params['file']);
46}