Skip to content
Snippets Groups Projects
Commit ad96fe93 authored by Sean Madsen's avatar Sean Madsen
Browse files

hook_civicrm_post - basic cleaning after import.

fixes #84
parent f09e3c2c
No related branches found
No related tags found
No related merge requests found
...@@ -12,25 +12,21 @@ deleted first). ...@@ -12,25 +12,21 @@ deleted first).
## Definition ## Definition
hook_civicrm_post($op, $objectName, $objectId, &$objectRef) ```php
hook_civicrm_post($op, $objectName, $objectId, &$objectRef)
```
## Parameters ## Parameters
- $op - operation being performed with CiviCRM object. Can have the - `$op` - operation being performed with CiviCRM object. Can have the following values:
following values:
- 'view' : The CiviCRM object is going to be displayed - 'view' : The CiviCRM object is going to be displayed
- 'create' : The CiviCRM object is created (or contacts are being - 'create' : The CiviCRM object is created (or contacts are being added to a group)
added to a group)
- 'edit' : The CiviCRM object is edited - 'edit' : The CiviCRM object is edited
- 'delete' : The CiviCRM object is being deleted (or contacts are - 'delete' : The CiviCRM object is being deleted (or contacts are being removed from a group)
being removed from a group) - 'trash': The contact is being moved to trash (Contact objects only)
- 'trash': The contact is being moved to trash (Contact objects - 'restore': The contact is being restored from trash (Contact objects only)
only)
- 'restore': The contact is being restored from trash (Contact - `$objectName` - can have the following values:
objects only)
- $objectName - can have the following values:
- 'Activity' - 'Activity'
- 'Address' - 'Address'
- 'Case' - 'Case'
...@@ -59,19 +55,17 @@ deleted first). ...@@ -59,19 +55,17 @@ deleted first).
- 'Phone' - 'Phone'
- 'Pledge' - 'Pledge'
- 'PledgePayment' - 'PledgePayment'
- 'Profile' (while this is not really an object, people have - 'Profile' *(while this is not really an object, people have
expressed an interest to perform an action when a profile is expressed an interest to perform an action when a profile is
created/edited) created/edited)*
- 'Relationship' - 'Relationship'
- 'Tag' - 'Tag'
- 'UFMatch' (when an object is linked to a CMS user record, at the - 'UFMatch' *(when an object is linked to a CMS user record, at the
request of GordonH. A UFMatch object is passed for both the pre request of GordonH. A UFMatch object is passed for both the pre
and post hooks) and post hooks)*
- $objectId - the unique identifier for the object. tagID in case of - `$objectId` - the unique identifier for the object. `tagID` in case of `EntityTag`
EntityTag - `$objectRef` - the reference to the object if available. For case of `EntityTag` it is an array of (`entityTable`, `entityIDs`)
- $objectRef - the reference to the object if available. For case of
EntityTag it is an array of (entityTable, entityIDs)
## Returns ## Returns
...@@ -80,67 +74,66 @@ deleted first). ...@@ -80,67 +74,66 @@ deleted first).
## Example ## Example
Here is a simple example that will send you an email whenever an Here is a simple example that will send you an email whenever an
INDIVIDUAL Contact is either Added, Updated or Deleted: individual contact is either added, updated or deleted:
Create a new folder called example_sendEmailOnIndividual in this Create a new folder called `example_sendEmailOnIndividual` in this
directory directory
/drupal_install_dir/sites/all/modules/civicrm/drupal/modules/ and then `/drupal_install_dir/sites/all/modules/civicrm/drupal/modules/` and then
put the following two files in that directory (change the email put the following two files in that directory (change the email
addresses to yours). addresses to yours).
FILE #1 /drupal_install_dir/sites/all/modules/civicrm/drupal/modules/example_sendEmailOnIndividual/example_sendEmailOnIndividual.info File 1:
name = Example Send Email On Individual `/drupal_install_dir/sites/all/modules/civicrm/drupal/modules/example_sendEmailOnIndividual/example_sendEmailOnIndividual.info`
description = Example that will send an email when an Individual Contact is Added, Updated or Deleted.
dependencies[] = civicrm ```txt
package = CiviCRM name = Example Send Email On Individual
core = 6.x description = Example that will send an email when an Individual Contact is Added, Updated or Deleted.
version = 1.0 dependencies[] = civicrm
package = CiviCRM
FILE #2 /drupal_install_dir/sites/all/modules/civicrm/drupal/modules/example_sendEmailOnIndividual/example_sendEmailOnIndividual.module core = 6.x
version = 1.0
<?php ```
function exampleSendEmailOnIndividual_civicrm_post($op, $objectName, $objectId, &$objectRef) {
File 2:
/**************************************************************
* Send an email when Individual Contact is CREATED or EDITED or DELETED `/drupal_install_dir/sites/all/modules/civicrm/drupal/modules/example_sendEmailOnIndividual/example_sendEmailOnIndividual.module`
*/
$send_an_email = false; //Set to TRUE for DEBUG only ```php
$email_to = 'me@mydomain.com'; //TO email address <?php
$email_from = 'me@mydomain.com'; //FROM email address function exampleSendEmailOnIndividual_civicrm_post($op, $objectName, $objectId, &$objectRef) {
$email_sbj = 'CiviCRM exampleSendEmailOnIndividual';
$email_msg = "CiviCRM exampleSendEmailOnIndividual was called. $send_an_email = false; //Set to TRUE for DEBUG only
".$op." ".$objectName." $email_to = 'me@mydomain.com'; //TO email address
".$objectId." "; $email_from = 'me@mydomain.com'; //FROM email address
$email_sbj = 'CiviCRM exampleSendEmailOnIndividual';
if ($op == 'create' && $objectName == 'Individual') { $email_msg = "CiviCRM exampleSendEmailOnIndividual was called.\n".$op." ".$objectName."\n".$objectId." ";
$email_sbj .= "- ADDED NEW contact";
$email_msg .= $objectRef->display_name." if ($op == 'create' && $objectName == 'Individual') {
"; $email_sbj .= "- ADDED NEW contact";
$send_an_email = true; $email_msg .= $objectRef->display_name."\n";
} else if ($op == 'edit' && $objectName == 'Individual') { $send_an_email = true;
$email_sbj .= "- EDITED contact"; }
$email_msg .= $objectRef->display_name." else if ($op == 'edit' && $objectName == 'Individual') {
"; $email_sbj .= "- EDITED contact";
$send_an_email = true; $email_msg .= $objectRef->display_name."\n";
} else if ($op == 'delete' && $objectName == 'Individual') { $send_an_email = true;
$email_sbj .= "- DELETED contact"; }
$email_msg .= $objectRef->display_name." else if ($op == 'delete' && $objectName == 'Individual') {
"; $email_sbj .= "- DELETED contact";
$email_msg .= 'Phone: '.$objectRef->phone." $email_msg .= $objectRef->display_name."\n";
"; $email_msg .= 'Phone: '.$objectRef->phone."\n";
$email_msg .= 'Email: '.$objectRef->email." $email_msg .= 'Email: '.$objectRef->email."\n";
"; $send_an_email = true;
$send_an_email = true; }
}
if ($send_an_email) {
if ($send_an_email) { mail($email_to, $email_sbj, $email_msg, "From: ".$email_from);
mail($email_to, $email_sbj, $email_msg, "From: ".$email_from); }
}
}
}//end FUNCTION ```
?>
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!
\ No newline at end of file
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