Merge branch 'phpunit-ob-fix' of https://github.com/giant-rabbit/civicrm-core into...
[civicrm-core.git] / CRM / Pledge / Page / AJAX.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class contains all the function that are called using AJAX
38 */
39class CRM_Pledge_Page_AJAX {
40
41 /**
100fef9d 42 * Building Pledge Name combo box
6a488035 43 */
a56a48be 44 static function pledgeName() {
6a488035
TO
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 = "
62SELECT p.creator_pledge_desc, p.id
63FROM civicrm_pb_pledge p
64WHERE {$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('name' => trim($name, '*'),
82 'value' => trim($name, '*'),
83 );
84 }
85
86 echo CRM_Utils_JSON::encode($elements, 'value');
87 CRM_Utils_System::civiExit();
88 }
04e6444d 89 /**
90 * Function to setDefaults according to Pledge Id
91 * for batch entry pledges
92 */
9fa00ed1 93 function getPledgeDefaults() {
d78a705e 94 $details = array();
95 if (!empty($_POST['pid'])) {
96 $pledgeID = CRM_Utils_Type::escape($_POST['pid'], 'Integer');
97 $details = CRM_Pledge_BAO_PledgePayment::getOldestPledgePayment($pledgeID);
98 }
04e6444d 99 echo json_encode($details);
100 CRM_Utils_System::civiExit();
101 }
6a488035
TO
102}
103