CRM-17004 - Fix upgrade query for removing payment processors
[civicrm-core.git] / CRM / Batch / Page / AJAX.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33
34/**
3819f101 35 * This class contains functions that are called using AJAX.
6a488035
TO
36 */
37class CRM_Batch_Page_AJAX {
38
39 /**
eceb18cc 40 * Save record.
6a488035 41 */
00be9182 42 public function batchSave() {
6c97864e 43 // save the entered information in 'data' column
6a488035
TO
44 $batchId = CRM_Utils_Type::escape($_POST['batch_id'], 'Positive');
45
6a488035 46 unset($_POST['qfKey']);
c0d307ec 47 CRM_Core_DAO::setFieldValue('CRM_Batch_DAO_Batch', $batchId, 'data', json_encode(array('values' => $_POST)));
6a488035 48
6a488035
TO
49 CRM_Utils_System::civiExit();
50 }
51
52 /**
eceb18cc 53 * Retrieve records.
6a488035 54 */
00be9182 55 public static function getBatchList() {
6a488035 56 $sortMapper = array(
0b0941e2
DL
57 0 => 'batch.title',
58 1 => 'batch.type_id',
59 2 => '',
60 3 => 'batch.total',
61 4 => 'batch.status_id',
62 5 => '',
6a488035
TO
63 );
64
353ffa53 65 $sEcho = CRM_Utils_Type::escape($_REQUEST['sEcho'], 'Integer');
408b79bf 66 $offset = isset($_REQUEST['iDisplayStart']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayStart'], 'Integer') : 0;
67 $rowCount = isset($_REQUEST['iDisplayLength']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayLength'], 'Integer') : 25;
68 $sort = isset($_REQUEST['iSortCol_0']) ? CRM_Utils_Array::value(CRM_Utils_Type::escape($_REQUEST['iSortCol_0'], 'Integer'), $sortMapper) : NULL;
69 $sortOrder = isset($_REQUEST['sSortDir_0']) ? CRM_Utils_Type::escape($_REQUEST['sSortDir_0'], 'String') : 'asc';
70 $context = isset($_REQUEST['context']) ? CRM_Utils_Type::escape($_REQUEST['context'], 'String') : NULL;
6a488035
TO
71
72 $params = $_REQUEST;
73 if ($sort && $sortOrder) {
74 $params['sortBy'] = $sort . ' ' . $sortOrder;
75 }
76
77 $params['page'] = ($offset / $rowCount) + 1;
78 $params['rp'] = $rowCount;
79
80 if ($context != 'financialBatch') {
81 // data entry status batches
691df66d 82 $params['status_id'] = CRM_Core_OptionGroup::getValue('batch_status', 'Data Entry', 'name');
6a488035 83 }
0b0941e2 84
6a488035
TO
85 $params['context'] = $context;
86
87 // get batch list
88 $batches = CRM_Batch_BAO_Batch::getBatchListSelector($params);
89
90 $iFilteredTotal = $iTotal = $params['total'];
6a488035
TO
91
92 if ($context == 'financialBatch') {
957bbb1d
CW
93 $selectorElements = array(
94 'check',
95 'batch_name',
96 'payment_instrument',
97 'item_count',
98 'total',
99 'status',
100 'created_by',
101 'links',
102 );
103 }
104 else {
105 $selectorElements = array(
106 'batch_name',
107 'type',
108 'item_count',
109 'total',
110 'status',
111 'created_by',
112 'links',
113 );
6a488035 114 }
d42a224c 115 CRM_Utils_System::setHttpHeader('Content-Type', 'application/json');
6a488035
TO
116 echo CRM_Utils_JSON::encodeDataTableSelector($batches, $sEcho, $iTotal, $iFilteredTotal, $selectorElements);
117 CRM_Utils_System::civiExit();
118 }
96025800 119
6a488035 120}