Skip to content
Snippets Groups Projects
Commit 8d446943 authored by Sean Madsen's avatar Sean Madsen Committed by GitHub
Browse files

Merge pull request #368 from mattwire/patch-10

Add callback example
parents f1531496 a100d800
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,10 @@ This is very applicable when you need to maintain foreign key ...@@ -12,6 +12,10 @@ This is very applicable when you need to maintain foreign key
constraints etc (when deleting an object, the child objects have to be constraints etc (when deleting an object, the child objects have to be
deleted first). deleted first).
!!! note
These hooks use database transactions. Don't execute code that updates the same data in the database without using a callback. Eg. if triggering on a `Membership` entity, don't try and update that membership entity within the hook. Use CRM_Core_Transaction::addCallback() instead.
## Definition ## Definition
```php ```php
...@@ -102,7 +106,6 @@ File 2: ...@@ -102,7 +106,6 @@ File 2:
`/drupal_install_dir/sites/all/modules/civicrm/drupal/modules/example_sendEmailOnIndividual/example_sendEmailOnIndividual.module` `/drupal_install_dir/sites/all/modules/civicrm/drupal/modules/example_sendEmailOnIndividual/example_sendEmailOnIndividual.module`
```php ```php
<?php
function exampleSendEmailOnIndividual_civicrm_post($op, $objectName, $objectId, &$objectRef) { function exampleSendEmailOnIndividual_civicrm_post($op, $objectName, $objectId, &$objectRef) {
$send_an_email = false; //Set to TRUE for DEBUG only $send_an_email = false; //Set to TRUE for DEBUG only
...@@ -139,3 +142,17 @@ if ($send_an_email) { ...@@ -139,3 +142,17 @@ if ($send_an_email) {
Once the files are in the directory, you need to login to Drupal admin, Once the files are in the directory, you need to login to Drupal admin,
go to Modules and enable our new module and click Save. Now go and edit go to Modules and enable our new module and click Save. Now go and edit
a contact and you should get an email! a contact and you should get an email!
## Example with transaction callback
Here is an example that calls a function `updateMembershipCustomField()` every time a membership is created (or updated).
```php
function example_civicrm_post($op, $objectName, $objectId, &$objectRef) {
if ($objectName == 'Membership' && $op == 'create') {
CRM_Core_Transaction::addCallback(CRM_Core_Transaction::PHASE_POST_COMMIT,
'updateMembershipCustomField', array($objectRef->id));
break;
}
}
```
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