Merge pull request #14358 from samuelsov/billingblockts
[civicrm-core.git] / templates / CRM / common / customData.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2019 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 *}
26 {literal}
27 <script type="text/javascript">
28 (function($) {
29 CRM.buildCustomData = function (type, subType, subName, cgCount, groupID, isMultiple, onlySubtype) {
30 var dataUrl = CRM.url('civicrm/custom', {type: type}),
31 prevCount = 1,
32 fname = '#customData',
33 storage = {};
34
35 if (subType) {
36 dataUrl += '&subType=' + subType;
37 }
38
39 if (onlySubtype) {
40 dataUrl += '&onlySubtype=' + onlySubtype;
41 }
42
43 if (subName) {
44 dataUrl += '&subName=' + subName;
45 $('#customData' + subName).show();
46 }
47 else {
48 $('#customData').show();
49 }
50 if (groupID) {
51 dataUrl += '&groupID=' + groupID;
52 }
53
54 {/literal}
55 {if $groupID}
56 dataUrl += '&groupID=' + '{$groupID}';
57 {/if}
58 {if $entityID}
59 dataUrl += '&entityID=' + '{$entityID}';
60 {/if}
61 {if $qfKey}
62 dataUrl += '&qf=' + '{$qfKey}';
63 {/if}
64 {if $action}
65 dataUrl += '&action=' + '{$action}';
66 {/if}
67 {literal}
68
69 if (!cgCount) {
70 cgCount = 1;
71 }
72 else if (cgCount >= 1) {
73 prevCount = cgCount;
74 cgCount++;
75 }
76
77 dataUrl += '&cgcount=' + cgCount;
78
79
80 if (isMultiple) {
81 fname = '#custom_group_' + groupID + '_' + prevCount;
82 if ($(".add-more-link-" + groupID + "-" + prevCount).length) {
83 $(".add-more-link-" + groupID + "-" + prevCount).hide();
84 }
85 else {
86 $("#add-more-link-" + prevCount).hide();
87 }
88 }
89 else if (subName && subName != 'null') {
90 fname += subName;
91 }
92
93 return CRM.loadPage(dataUrl, {target: fname});
94 };
95 })(CRM.$);
96 </script>
97 {/literal}