CRM-21849: Change to loose comparison
[civicrm-core.git] / templates / CRM / common / enableDisableApi.tpl
CommitLineData
12798ddc
CW
1{*
2 +--------------------------------------------------------------------+
2c4c49ca 3 | CiviCRM version 4.7 |
12798ddc 4 +--------------------------------------------------------------------+
8c9251b3 5 | Copyright CiviCRM LLC (c) 2004-2018 |
12798ddc
CW
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{* handle common enable/disable actions *}
27{literal}
28<script type="text/javascript">
3cc60a06 29 CRM.$(function($) {
369f685e 30 var $a, $row, info, enabled, fieldLabel;
12798ddc 31
e11b84ce
CW
32 function successMsg() {
33 {/literal} {* client-side variable substitutions in smarty are AWKWARD! *}
d0aaa02e 34 var msg = enabled ? '{ts escape="js" 1="%1"}%1 Disabled{/ts}' : '{ts escape="js" 1="%1"}%1 Enabled{/ts}'{literal};
e11b84ce
CW
35 return ts(msg, {1: fieldLabel});
36 }
37
12798ddc 38 function refresh() {
369f685e 39 $a.trigger('crmPopupFormSuccess');
554b1768 40 CRM.refreshParent($row);
12798ddc
CW
41 }
42
43 function save() {
554b1768 44 $row.closest('table').block();
c6c860d0
CW
45 var params = {id: info.id};
46 if (info.action == 'setvalue') {
47 params.field = 'is_active';
48 params.value = enabled ? 0 : 1;
49 } else {
50 params.is_active = enabled ? 0 : 1;
51 }
52 CRM.api3(info.entity, info.action, params, {success: successMsg}).done(refresh);
12798ddc
CW
53 }
54
369f685e
CW
55 function checkResponse(e, response) {
56 if (response.illegal) {
57 $(this).dialog('option', 'buttons', [
f62db3ac 58 {text: {/literal}'{ts escape="js"}Close{/ts}'{literal}, click: function() {$(this).dialog('close');}, icons: {primary: 'fa-times'}}
369f685e
CW
59 ]);
60 }
12798ddc
CW
61 }
62
63 function enableDisable() {
369f685e
CW
64 $row = $a.closest('.crm-entity');
65 info = $a.crmEditableEntity();
e2046b33 66 fieldLabel = info.label || info.title || info.display_name || info.name || {/literal}'{ts escape="js"}Record{/ts}'{literal};
12798ddc
CW
67 enabled = !$row.hasClass('disabled');
68 if (enabled) {
369f685e
CW
69 CRM.confirm({
70 url: CRM.url('civicrm/ajax/statusmsg', {entity: info.entity, id: info.id}),
71 title: ts('{/literal}{ts escape="js" 1='%1'}Disable %1{/ts}{literal}', {1: fieldLabel}),
72 options: {{/literal}yes: '{ts escape="js"}Yes{/ts}', no: '{ts escape="js"}No{/ts}'{literal}},
9f324020
CW
73 width: 300,
74 height: 'auto'
369f685e
CW
75 })
76 .on('crmLoad', checkResponse)
77 .on('crmConfirm:yes', save);
12798ddc
CW
78 } else {
79 save();
80 }
12798ddc
CW
81 }
82
83 // Because this is an inline script it may get added to the document more than once, so remove handler before adding
84 $('body')
fdf3f783 85 .off('.crmEnableDisable')
30b7642c
CW
86 .on('click.crmEnableDisable', '.action-item.crm-enable-disable', function(e) {
87 e.preventDefault();
88 $a = $(this);
89 CRM.loadScript(CRM.config.resourceBase + 'js/jquery/jquery.crmEditable.js').done(enableDisable);
90 });
12798ddc
CW
91 });
92</script>
93{/literal}