Merge pull request #15649 from JMAConsulting/core-1346
[civicrm-core.git] / CRM / Core / Smarty / plugins / function.crmScript.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
15 * @copyright CiviCRM LLC
16 * $Id$
17 *
18 */
19
20/**
21 * Add a Javascript file to a specific part of the page
22 *
16b10e64
CW
23 * @param array $params
24 * Array with keys:
25 * - ext: string, extension name. see CRM_Core_Resources::addScriptFile
26 * - file: string, relative file path. see CRM_Core_Resources::addScriptFile
27 * - url: string. see CRM_Core_Resources::addScriptURL
28 * - weight: int; default: CRM_Core_Resources::DEFAULT_WEIGHT (0)
29 * - region: string; default: CRM_Core_Resources::DEFAULT_REGION ('html-header')
30 * @param CRM_Core_Smarty $smarty
77b97be7
EM
31 *
32 * @throws Exception
6a488035
TO
33 */
34function smarty_function_crmScript($params, &$smarty) {
be2fb01f 35 $params += [
64967ca1
CW
36 'weight' => CRM_Core_Resources::DEFAULT_WEIGHT,
37 'region' => CRM_Core_Resources::DEFAULT_REGION,
38 'ext' => 'civicrm',
be2fb01f 39 ];
6a488035
TO
40
41 if (array_key_exists('file', $params)) {
64967ca1 42 Civi::resources()->addScriptFile($params['ext'], $params['file'], $params['weight'], $params['region']);
0db6c3e1
TO
43 }
44 elseif (array_key_exists('url', $params)) {
64967ca1 45 Civi::resources()->addScriptUrl($params['url'], $params['weight'], $params['region']);
0db6c3e1
TO
46 }
47 else {
6a488035
TO
48 CRM_Core_Error::debug_var('crmScript_params', $params);
49 throw new Exception("crmScript requires url or ext+file");
50 }
51}