97 lines
3.5 KiB
PHP
97 lines
3.5 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
|
|
*/
|
|
class CRM_Pledge_Page_Payment extends CRM_Core_Page {
|
|
|
|
/**
|
|
* 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->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
|
|
$this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
|
|
|
|
$this->assign('action', $this->_action);
|
|
$this->assign('context', $this->_context);
|
|
|
|
$this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
|
|
|
|
CRM_Pledge_Page_Tab::setContext($this);
|
|
|
|
if ($this->_action & CRM_Core_Action::UPDATE) {
|
|
$this->edit();
|
|
}
|
|
else {
|
|
$pledgeId = CRM_Utils_Request::retrieve('pledgeId', 'Positive', $this);
|
|
|
|
$paymentDetails = CRM_Pledge_BAO_PledgePayment::getPledgePayments($pledgeId);
|
|
|
|
$this->assign('rows', $paymentDetails);
|
|
$this->assign('pledgeId', $pledgeId);
|
|
$this->assign('contactId', $this->_contactId);
|
|
|
|
// check if we can process credit card contributions
|
|
$this->assign('newCredit', CRM_Core_Config::isEnabledBackOfficeCreditCardPayments());
|
|
|
|
// check is the user has view/edit signer permission
|
|
$permission = 'view';
|
|
if (CRM_Core_Permission::check('edit pledges')) {
|
|
$permission = 'edit';
|
|
}
|
|
$this->assign('permission', $permission);
|
|
}
|
|
|
|
return parent::run();
|
|
}
|
|
|
|
/**
|
|
* called when action is update or new.
|
|
*
|
|
* @return null
|
|
*/
|
|
public function edit() {
|
|
$controller = new CRM_Core_Controller_Simple('CRM_Pledge_Form_Payment',
|
|
'Update Pledge Payment',
|
|
$this->_action
|
|
);
|
|
|
|
$pledgePaymentId = CRM_Utils_Request::retrieve('ppId', 'Positive', $this);
|
|
|
|
$controller->setEmbedded(TRUE);
|
|
$controller->set('id', $pledgePaymentId);
|
|
|
|
return $controller->run();
|
|
}
|
|
|
|
}
|