Merge pull request #5338 from kurund/CRM-15756
[civicrm-core.git] / CRM / Pledge / Page / AJAX.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * This class contains all the function that are called using AJAX
38 */
39 class CRM_Pledge_Page_AJAX {
40
41 /**
42 * Building Pledge Name combo box.
43 */
44 public static function pledgeName() {
45
46 $getRecords = FALSE;
47 if (isset($_GET['name']) && $_GET['name']) {
48 $name = CRM_Utils_Type::escape($_GET['name'], 'String');
49 $name = str_replace('*', '%', $name);
50 $whereClause = "p.creator_pledge_desc LIKE '%$name%' ";
51 $getRecords = TRUE;
52 }
53
54 if (isset($_GET['id']) && is_numeric($_GET['id'])) {
55 $pledgeId = CRM_Utils_Type::escape($_GET['id'], 'Integer');
56 $whereClause = "p.id = {$pledgeId} ";
57 $getRecords = TRUE;
58 }
59
60 if ($getRecords) {
61 $query = "
62 SELECT p.creator_pledge_desc, p.id
63 FROM civicrm_pb_pledge p
64 WHERE {$whereClause}
65 ";
66 $dao = CRM_Core_DAO::executeQuery($query);
67 $elements = array();
68 while ($dao->fetch()) {
69 $elements[] = array(
70 'name' => $dao->creator_pledge_desc,
71 'value' => $dao->id,
72 );
73 }
74 }
75
76 if (empty($elements)) {
77 $name = $_GET['name'];
78 if (!$name && isset($_GET['id'])) {
79 $name = $_GET['id'];
80 }
81 $elements[] = array(
82 'name' => trim($name, '*'),
83 'value' => trim($name, '*'),
84 );
85 }
86
87 echo CRM_Utils_JSON::encode($elements, 'value');
88 CRM_Utils_System::civiExit();
89 }
90
91 /**
92 * Function to setDefaults according to Pledge Id
93 * for batch entry pledges
94 */
95 public function getPledgeDefaults() {
96 $details = array();
97 if (!empty($_POST['pid'])) {
98 $pledgeID = CRM_Utils_Type::escape($_POST['pid'], 'Integer');
99 $details = CRM_Pledge_BAO_PledgePayment::getOldestPledgePayment($pledgeID);
100 }
101 echo json_encode($details);
102 CRM_Utils_System::civiExit();
103 }
104
105 }