Ian province abbreviation patch - issue 724
[civicrm-core.git] / CRM / Batch / Page / AJAX.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
31 * @copyright CiviCRM LLC (c) 2004-2015
32 */
33
34 /**
35 * This class contains functions that are called using AJAX.
36 */
37 class CRM_Batch_Page_AJAX {
38
39 /**
40 * Save record.
41 */
42 public function batchSave() {
43 // save the entered information in 'data' column
44 $batchId = CRM_Utils_Type::escape($_POST['batch_id'], 'Positive');
45
46 unset($_POST['qfKey']);
47 CRM_Core_DAO::setFieldValue('CRM_Batch_DAO_Batch', $batchId, 'data', json_encode(array('values' => $_POST)));
48
49 CRM_Utils_System::civiExit();
50 }
51
52 /**
53 * Retrieve records.
54 */
55 public static function getBatchList() {
56 $sortMapper = array(
57 0 => 'batch.title',
58 1 => 'batch.type_id',
59 2 => '',
60 3 => 'batch.total',
61 4 => 'batch.status_id',
62 5 => '',
63 );
64
65 $sEcho = CRM_Utils_Type::escape($_REQUEST['sEcho'], 'Integer');
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;
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
82 $params['status_id'] = CRM_Core_OptionGroup::getValue('batch_status', 'Data Entry', 'name');
83 }
84
85 $params['context'] = $context;
86
87 // get batch list
88 $batches = CRM_Batch_BAO_Batch::getBatchListSelector($params);
89
90 $iFilteredTotal = $iTotal = $params['total'];
91
92 if ($context == 'financialBatch') {
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 );
114 }
115 CRM_Utils_System::setHttpHeader('Content-Type', 'application/json');
116 echo CRM_Utils_JSON::encodeDataTableSelector($batches, $sEcho, $iTotal, $iFilteredTotal, $selectorElements);
117 CRM_Utils_System::civiExit();
118 }
119
120 }