fixed enable action for past relationships CRM-14201
[civicrm-core.git] / templates / CRM / common / enableDisableApi.tpl
CommitLineData
12798ddc
CW
1{*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.4 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
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">
29 cj(function($) {
d4838efc 30 var $row, $table, info, enabled, fieldLabel;
12798ddc
CW
31
32 function refresh() {
7d644ac8
CW
33 // Call native refresh method on ajax datatables
34 if ($.fn.DataTable.fnIsDataTable($table[0]) && $table.dataTable().fnSettings().sAjaxSource) {
35 $table.unblock().dataTable().fnDraw();
0cb182f6 36
37 // incase of more than 1 datatables on same page, refresh remaining datatables
38 $('table.dataTable').each(function () {
39 var currentTable = $(this);
40 if (currentTable.prop('id') != $table.prop('id')) {
0cb182f6 41 if ($.fn.DataTable.fnIsDataTable(currentTable[0]) && currentTable.dataTable().fnSettings().sAjaxSource) {
f22f004b 42 currentTable.dataTable().fnDraw();
0cb182f6 43 }
44 }
45 });
7d644ac8
CW
46 }
47 // Otherwise refresh the content area using crmSnippet
48 else {
1fe97a01
CW
49 $row.closest('.crm-ajax-container, #crm-main-content-wrapper').crmSnippet().crmSnippet('refresh');
50 }
d4838efc
CW
51 {/literal} {* client-side variable substitutions in smarty are AWKWARD! *}
52 var msg = enabled ? '{ts escape="js" 1="<em>%1</em>"}%1 Disabled{/ts}' : '{ts escape="js" 1="<em>%1</em>"}%1 Enabled{/ts}'{literal};
53 CRM.alert('', ts(msg, {1: fieldLabel}), 'success');
12798ddc
CW
54 }
55
56 function save() {
1fe97a01
CW
57 $table = $row.closest('table');
58 $table.block();
d4838efc 59 CRM.api(info.entity, 'setvalue', {id: info.id, field: 'is_active', value: enabled ? 0 : 1}, {success: refresh});
4d17a233
CW
60 if (enabled) {
61 $(this).dialog('close');
62 }
12798ddc
CW
63 }
64
65 function confirmation() {
4d17a233 66 var conf = $(this);
d4838efc 67 $.getJSON(CRM.url('civicrm/ajax/statusmsg', {entity: info.entity, id: info.id}), function(response) {
4d17a233
CW
68 conf.html(response.content);
69 if (!response.illegal) {
70 conf.dialog('option', 'buttons', [
71 {text: {/literal}'{ts escape="js"}Disable{/ts}'{literal}, click: save},
72 {text: {/literal}'{ts escape="js"}Cancel{/ts}'{literal}, click: function() {$(this).dialog('close');}}
73 ]);
74 }
12798ddc
CW
75 });
76 }
77
78 function enableDisable() {
d4838efc
CW
79 $row = $(this).closest('.crm-entity');
80 info = $(this).crmEditableEntity();
81 fieldLabel = info.label || info.title || info.name || {/literal}'{ts escape="js"}Record{/ts}'{literal};
12798ddc
CW
82 enabled = !$row.hasClass('disabled');
83 if (enabled) {
4d17a233 84 CRM.confirm({}, {{/literal}
12798ddc 85 message: '<div class="crm-loading-element">{ts escape="js"}Loading{/ts}...</div>',
d4838efc
CW
86 {* client-side variable substitutions in smarty are AWKWARD! *}
87 title: ts('{ts escape="js" 1='%1'}Disable %1{/ts}{literal}', {1: fieldLabel}),
12798ddc
CW
88 width: 300,
89 open: confirmation
d4838efc 90 });
12798ddc
CW
91 } else {
92 save();
93 }
94 return false;
95 }
96
97 // Because this is an inline script it may get added to the document more than once, so remove handler before adding
98 $('body')
99 .off('click', '.action-item.crm-enable-disable')
100 .on('click', '.action-item.crm-enable-disable', enableDisable);
101 });
102</script>
103{/literal}