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