110 lines
4.1 KiB
PHP
110 lines
4.1 KiB
PHP
<?php
|
|
/*
|
|
+--------------------------------------------------------------------+
|
|
| CiviCRM version 4.7 |
|
|
+--------------------------------------------------------------------+
|
|
| Copyright CiviCRM LLC (c) 2004-2017 |
|
|
+--------------------------------------------------------------------+
|
|
| This file is a part of CiviCRM. |
|
|
| |
|
|
| CiviCRM is free software; you can copy, modify, and distribute it |
|
|
| under the terms of the GNU Affero General Public License |
|
|
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
|
| |
|
|
| CiviCRM is distributed in the hope that it will be useful, but |
|
|
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
|
| See the GNU Affero General Public License for more details. |
|
|
| |
|
|
| You should have received a copy of the GNU Affero General Public |
|
|
| License and the CiviCRM Licensing Exception along |
|
|
| with this program; if not, contact CiviCRM LLC |
|
|
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
|
| GNU Affero General Public License or the licensing of CiviCRM, |
|
|
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
|
+--------------------------------------------------------------------+
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @package CRM
|
|
* @copyright CiviCRM LLC (c) 2004-2017
|
|
*/
|
|
|
|
/**
|
|
* Main page for viewing Recurring Contributions.
|
|
*/
|
|
class CRM_Contribute_Page_ContributionRecur extends CRM_Core_Page {
|
|
|
|
static $_links = NULL;
|
|
public $_permission = NULL;
|
|
public $_contactId = NULL;
|
|
|
|
/**
|
|
* View details of a recurring contribution.
|
|
*/
|
|
public function view() {
|
|
$recur = new CRM_Contribute_DAO_ContributionRecur();
|
|
$recur->id = $this->_id;
|
|
if ($recur->find(TRUE)) {
|
|
$values = array();
|
|
CRM_Core_DAO::storeValues($recur, $values);
|
|
// if there is a payment processor ID, get the name of the payment processor
|
|
if (!empty($values['payment_processor_id'])) {
|
|
$values['payment_processor'] = CRM_Core_DAO::getFieldValue(
|
|
'CRM_Financial_DAO_PaymentProcessor',
|
|
$values['payment_processor_id'],
|
|
'name'
|
|
);
|
|
}
|
|
$idFields = array('contribution_status_id', 'campaign_id');
|
|
if (CRM_Contribute_BAO_ContributionRecur::supportsFinancialTypeChange($values['id'])) {
|
|
$idFields[] = 'financial_type_id';
|
|
}
|
|
foreach ($idFields as $idField) {
|
|
if (!empty($values[$idField])) {
|
|
$values[substr($idField, 0, -3)] = CRM_Core_PseudoConstant::getLabel('CRM_Contribute_BAO_ContributionRecur', $idField, $values[$idField]);
|
|
}
|
|
}
|
|
|
|
$this->assign('recur', $values);
|
|
}
|
|
}
|
|
|
|
public function preProcess() {
|
|
$context = CRM_Utils_Request::retrieve('context', 'String', $this);
|
|
$this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'view');
|
|
$this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
|
|
$this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
|
|
$this->assign('contactId', $this->_contactId);
|
|
|
|
// check logged in url permission
|
|
CRM_Contact_Page_View::checkUserPermission($this);
|
|
|
|
$this->assign('action', $this->_action);
|
|
|
|
if ($this->_permission == CRM_Core_Permission::EDIT && !CRM_Core_Permission::check('edit contributions')) {
|
|
// demote to view since user does not have edit contrib rights
|
|
$this->_permission = CRM_Core_Permission::VIEW;
|
|
$this->assign('permission', 'view');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* the main function that is called when the page loads,
|
|
* it decides the which action has to be taken for the page.
|
|
*
|
|
* @return null
|
|
*/
|
|
public function run() {
|
|
$this->preProcess();
|
|
|
|
if ($this->_action & CRM_Core_Action::VIEW) {
|
|
$this->view();
|
|
}
|
|
|
|
return parent::run();
|
|
}
|
|
|
|
}
|