Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
grant_program
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Extensions
grant_program
Commits
a7870468
Commit
a7870468
authored
11 years ago
by
Pradeep Nayak
Browse files
Options
Downloads
Patches
Plain Diff
-- fixed formatting for RG-208
parent
4d33e950
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CRM/Grant/Form/Task/Cancel.php
+39
-74
39 additions, 74 deletions
CRM/Grant/Form/Task/Cancel.php
with
39 additions
and
74 deletions
CRM/Grant/Form/Task/Cancel.php
+
39
−
74
View file @
a7870468
...
...
@@ -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
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment