--CRM-16187, fixed code style
authorPradeep Nayak <pradpnayak@gmail.com>
Thu, 23 Jul 2015 20:13:07 +0000 (01:43 +0530)
committerPradeep Nayak <pradpnayak@gmail.com>
Sat, 25 Jul 2015 05:19:56 +0000 (10:49 +0530)
templates/CRM/Admin/Page/APIExplorer.js

index 7cba1f5253c370d8d1dc2533532ebb3523ced59e..38a15486d8ca972a514c3469c5065e2037015977 100644 (file)
    * and Action is Create, delete, update etc then display warning
    */
   function checkBookKeepingEntity(entity, action) {      
-    if ($.inArray(entity, ['EntityFinancialTrxn', 'FinancialTrxn']) > -1 
-      && $.inArray(action, ['delete', 'setvalue', 'replace', 'create']) > -1
-    ) {
+    if ($.inArray(entity, ['EntityFinancialTrxn', 'FinancialTrxn']) > -1 && $.inArray(action, ['delete', 'setvalue', 'replace', 'create']) > -1) {
       var msg = ts('Given the importance of auditability, extension developers are strongly discouraged from writing code to add, update or delete entries in the civicrm_financial_item, civicrm_entity_financial_trxn, and civicrm_financial_trxn tables. Before publishing an extension on civicrm.org that does any of this, please ask for a special bookkeeping code review for the extension.');
       CRM.alert(msg, 'warning');
     }