Freeze custom data elements when viewing an entity
[civicrm-core.git] / templates / CRM / common / customData.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
fee14197 3 | CiviCRM version 5 |
6a488035 4 +--------------------------------------------------------------------+
8c9251b3 5 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
TO
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*}
6a488035
TO
26{literal}
27<script type="text/javascript">
9b177115 28 (function($) {
4bd532e8 29 CRM.buildCustomData = function (type, subType, subName, cgCount, groupID, isMultiple, onlySubtype) {
9b177115
CW
30 var dataUrl = CRM.url('civicrm/custom', {type: type}),
31 prevCount = 1,
a5511c4b 32 fname = '#customData',
9b177115 33 storage = {};
6a488035 34
9b177115
CW
35 if (subType) {
36 dataUrl += '&subType=' + subType;
37 }
6a488035 38
4bd532e8
JP
39 if (onlySubtype) {
40 dataUrl += '&onlySubtype=' + onlySubtype;
41 }
42
9b177115
CW
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 }
6a488035 53
9b177115 54 {/literal}
9b177115
CW
55 {if $groupID}
56 dataUrl += '&groupID=' + '{$groupID}';
57 {/if}
58 {if $entityID}
59 dataUrl += '&entityID=' + '{$entityID}';
60 {/if}
29a1df58 61 {if $qfKey}
62 dataUrl += '&qf=' + '{$qfKey}';
fb56e964 63 {/if}
25cdc89e
MWMC
64 {if $action}
65 dataUrl += '&action=' + '{$action}';
66 {/if}
9b177115 67 {literal}
6a488035 68
9b177115
CW
69 if (!cgCount) {
70 cgCount = 1;
71 }
72 else if (cgCount >= 1) {
73 prevCount = cgCount;
74 cgCount++;
75 }
6a488035 76
9b177115 77 dataUrl += '&cgcount=' + cgCount;
6a488035
TO
78
79
9b177115
CW
80 if (isMultiple) {
81 fname = '#custom_group_' + groupID + '_' + prevCount;
82 if ($(".add-more-link-" + groupID + "-" + prevCount).length) {
83 $(".add-more-link-" + groupID + "-" + prevCount).hide();
6a488035 84 }
9b177115
CW
85 else {
86 $("#add-more-link-" + prevCount).hide();
6a488035 87 }
9b177115 88 }
a5511c4b
CW
89 else if (subName && subName != 'null') {
90 fname += subName;
9b177115 91 }
0816949d 92
594cfdad 93 return CRM.loadPage(dataUrl, {target: fname});
9b177115
CW
94 };
95 })(CRM.$);
6a488035
TO
96</script>
97{/literal}