CRM-14949 - Replace {$timeGenerated} with {$smarty.now}
[civicrm-core.git] / templates / CRM / common / enableDisableApi.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2014 |
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 CRM.$(function($) {
30 var $row, info, enabled, fieldLabel;
31
32 function successMsg() {
33 {/literal} {* client-side variable substitutions in smarty are AWKWARD! *}
34 var msg = enabled ? '{ts escape="js" 1="<em>%1</em>"}%1 Disabled{/ts}' : '{ts escape="js" 1="<em>%1</em>"}%1 Enabled{/ts}'{literal};
35 return ts(msg, {1: fieldLabel});
36 }
37
38 function refresh() {
39 CRM.refreshParent($row);
40 }
41
42 function save() {
43 $row.closest('table').block();
44 CRM.api3(info.entity, 'setvalue', {id: info.id, field: 'is_active', value: enabled ? 0 : 1}, {success: successMsg}).done(refresh);
45 if (enabled) {
46 $(this).dialog('close');
47 }
48 }
49
50 function confirmation() {
51 var conf = $(this);
52 $.getJSON(CRM.url('civicrm/ajax/statusmsg', {entity: info.entity, id: info.id}), function(response) {
53 conf.html(response.content);
54 if (!response.illegal) {
55 conf.dialog('option', 'buttons', [
56 {text: {/literal}'{ts escape="js"}Disable{/ts}'{literal}, click: save},
57 {text: {/literal}'{ts escape="js"}Cancel{/ts}'{literal}, click: function() {$(this).dialog('close');}}
58 ]);
59 }
60 });
61 }
62
63 function enableDisable() {
64 $row = $(this).closest('.crm-entity');
65 info = $(this).crmEditableEntity();
66 fieldLabel = info.label || info.title || info.name || {/literal}'{ts escape="js"}Record{/ts}'{literal};
67 enabled = !$row.hasClass('disabled');
68 if (enabled) {
69 CRM.confirm({{/literal}
70 message: '<div class="crm-loading-element">{ts escape="js"}Loading{/ts}...</div>',
71 {* client-side variable substitutions in smarty are AWKWARD! *}
72 title: ts('{ts escape="js" 1='%1'}Disable %1{/ts}{literal}', {1: fieldLabel}),
73 width: 300,
74 options: null,
75 open: confirmation
76 });
77 } else {
78 save();
79 }
80 return false;
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')
85 .off('.crmEnableDisable')
86 .on('click.crmEnableDisable', '.action-item.crm-enable-disable', enableDisable);
87 });
88 </script>
89 {/literal}