Skip to content
Snippets Groups Projects
Commit a7870468 authored by Pradeep Nayak's avatar Pradeep Nayak
Browse files

-- fixed formatting for RG-208

parent 4d33e950
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
/*
+--------------------------------------------------------------------+
| CiviCRM version 4.1 |
| CiviCRM version 4.3 |
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC (c) 2004-2011 |
+--------------------------------------------------------------------+
......@@ -34,86 +34,51 @@
*
*/
require_once 'CRM/Grant/Form/PaymentTask.php';
require_once 'CRM/Core/OptionGroup.php';
/**
* This class provides the functionality to delete a group of
* participations. This class provides functionality for the actual
* deletion.
* This class provides the functionality to cancel a group of
* grant payments.
*/
class CRM_Grant_Form_Task_Cancel extends CRM_Grant_Form_PaymentTask
{
/**
* Are we operating in "single mode", i.e. deleting one
* specific participation?
*
* @var boolean
*/
protected $_single = false;
/**
* build all the data structures needed to build the form
*
* @return void
* @access public
*/
function preProcess( )
{
parent::preProcess( );
class CRM_Grant_Form_Task_Cancel extends CRM_Grant_Form_PaymentTask {
//check permission for delete.
if ( !CRM_Core_Permission::checkActionPermission( 'CiviGrant', CRM_Core_Action::DELETE ) ) {
CRM_Core_Error::fatal( ts( 'You do not have permission to access this page' ) );
}
}
/**
* build all the data structures needed to build the form
*
* @return void
* @access public
*/
function preProcess() {
parent::preProcess();
/**
* Build the form
*
* @access public
* @return void
*/
function buildQuickForm( )
{
$this->addDefaultButtons( ts( 'Cancel Grants' ), 'done' );
//check permission for delete.
if (!CRM_Core_Permission::checkActionPermission('CiviGrant', CRM_Core_Action::DELETE)) {
CRM_Core_Error::fatal(ts('You do not have permission to access this page'));
}
}
/**
* process the form after the input has been submitted and validated
*
* @access public
* @return None
*/
public function postProcess( )
{
$deletedGrantPayments = 0;
require_once 'CRM/Grant/DAO/EntityPayment.php';
require_once 'CRM/Grant/BAO/GrantPayment.php';
require_once 'CRM/Grant/BAO/EntityPayment.php';
foreach ( $this->_grantPaymentIds as $paymentId ) {
$entityDAO =& new CRM_Grant_DAO_EntityPayment();
$entityDAO->payment_id = $paymentId;
$entityDAO->find();
while( $entityDAO->fetch() ) {
CRM_Grant_BAO_EntityPayment::del( $entityDAO->id );
$grantDAO =& new CRM_Grant_DAO_Grant();
$grantDAO->id = $entityDAO->entity_id;
$grantDAO->status_id = CRM_Core_OptionGroup::getValue( 'grant_status', 'Eligible', 'name' );
$grantDAO->save();
}
if ( CRM_Grant_BAO_GrantPayment::del( $paymentId ) ) {
$deletedGrantPayments++;
}
}
/**
* Build the form
*
* @access public
* @return void
*/
function buildQuickForm() {
$this->addDefaultButtons(ts('Cancel Grants'), 'done');
}
$status = array(
ts( 'Cancel Grant Payments(s): %1', array( 1 => $deletedGrantPayments ) ),
ts( 'Total Selected Grant Payments(s): %1', array( 1 => count($this->_grantPaymentIds ) ) ),
);
CRM_Core_Session::setStatus( $status );
}
/**
* process the form after the input has been submitted and validated
*
* @access public
* @return None
*/
public function postProcess() {
$deletedGrantPayments = 0;
$status = array(
ts('Cancel Grant Payments(s): %1', array(1 => $deletedGrantPayments)),
ts('Total Selected Grant Payments(s): %1', array(1 => count($this->_grantPaymentIds))),
);
CRM_Core_Session::setStatus($status);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment