d05bcddb8fb739b085fb7f859cd98c4457668d70
[civicrm-core.git] / CRM / Pledge / Page / Payment.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35 class CRM_Pledge_Page_Payment extends CRM_Core_Page {
36
37 /**
38 * This function is the main function that is called when the page loads, it decides the which action has to be taken for the page.
39 *
40 * return null
41 * @access public
42 */
43 function run() {
44 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
45 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
46
47 $this->assign('action', $this->_action);
48 $this->assign('context', $this->_context);
49
50 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
51
52 CRM_Pledge_Page_Tab::setContext();
53
54 if ($this->_action & CRM_Core_Action::UPDATE) {
55 $this->edit();
56 // set page title
57 CRM_Contact_Page_View::setTitle($this->_contactId);
58 }
59 else {
60 $pledgeId = CRM_Utils_Request::retrieve('pledgeId', 'Positive', $this);
61
62 $paymentDetails = CRM_Pledge_BAO_PledgePayment::getPledgePayments($pledgeId);
63
64 $this->assign('rows', $paymentDetails);
65 $this->assign('pledgeId', $pledgeId);
66 $this->assign('contactId', $this->_contactId);
67
68 // check if we can process credit card contribs
69 CRM_Core_Payment::allowBackofficeCreditCard($this);
70
71 // check is the user has view/edit signer permission
72 $permission = 'view';
73 if (CRM_Core_Permission::check('edit pledges')) {
74 $permission = 'edit';
75 }
76 $this->assign('permission', $permission);
77 }
78
79 return parent::run();
80 }
81
82 /**
83 * This function is called when action is update or new
84 *
85 * return null
86 * @access public
87 */
88 function edit() {
89 $controller = new CRM_Core_Controller_Simple('CRM_Pledge_Form_Payment',
90 'Update Pledge Payment',
91 $this->_action
92 );
93
94 $pledgePaymentId = CRM_Utils_Request::retrieve('ppId', 'Positive', $this);
95
96 $controller->setEmbedded(TRUE);
97 $controller->set('id', $pledgePaymentId);
98
99 return $controller->run();
100 }
101 }
102