Merge pull request #7032 from mlutfy/4.7-crm17432
[civicrm-core.git] / CRM / Contribute / Page / ContributionRecur.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 * Main page for viewing Recurring Contributions.
36 */
37 class CRM_Contribute_Page_ContributionRecur extends CRM_Core_Page {
38
39 static $_links = NULL;
40 public $_permission = NULL;
41 public $_contactId = NULL;
42
43 /**
44 * View details of a recurring contribution.
45 */
46 public function view() {
47 $recur = new CRM_Contribute_DAO_ContributionRecur();
48 $recur->id = $this->_id;
49 if ($recur->find(TRUE)) {
50 $values = array();
51 CRM_Core_DAO::storeValues($recur, $values);
52 // if there is a payment processor ID, get the name of the payment processor
53 if (!empty($values['payment_processor_id'])) {
54 $values['payment_processor'] = CRM_Core_DAO::getFieldValue(
55 'CRM_Financial_DAO_PaymentProcessor',
56 $values['payment_processor_id'],
57 'name'
58 );
59 }
60 // get contribution status label
61 if (!empty($values['contribution_status_id'])) {
62 $values['contribution_status'] = CRM_Core_PseudoConstant::getLabel('CRM_Contribute_BAO_ContributionRecur', 'contribution_status_id', $values['contribution_status_id']);
63 }
64
65 $this->assign('recur', $values);
66 }
67 }
68
69 public function preProcess() {
70 $context = CRM_Utils_Request::retrieve('context', 'String', $this);
71 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'view');
72 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
73 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
74 $this->assign('contactId', $this->_contactId);
75
76 // check logged in url permission
77 CRM_Contact_Page_View::checkUserPermission($this);
78
79 $this->assign('action', $this->_action);
80
81 if ($this->_permission == CRM_Core_Permission::EDIT && !CRM_Core_Permission::check('edit contributions')) {
82 // demote to view since user does not have edit contrib rights
83 $this->_permission = CRM_Core_Permission::VIEW;
84 $this->assign('permission', 'view');
85 }
86 }
87
88 /**
89 * the main function that is called when the page loads,
90 * it decides the which action has to be taken for the page.
91 *
92 * @return null
93 */
94 public function run() {
95 $this->preProcess();
96
97 if ($this->_action & CRM_Core_Action::VIEW) {
98 $this->view();
99 }
100
101 return parent::run();
102 }
103
104 }