An event is triggered before sync accountcontact.
Code Block |
---|
language | php |
---|
title | TNW_Salesforce_Block_Sales_Order_Status_New_Form |
---|
|
Mage::dispatchEvent('tnw_salesforce_sync_mapping_contact_before', array('mapping' => $_mapping, 'entity' => $_entity, 'additionalObject' => $_additional_object)); |
...
Code Block |
---|
language | php |
---|
title | Example Observer |
---|
|
<?php
/**
* Class TNW_Salesforce_Model_Observer
*/
class TNW_Salesforce_Model_Observer
{
public function syncMappingContactBefore(Varien_Event_Observer $observer) {
/**
* Mapping objects
* @var TNW_Salesforce_Model_Sync_Mapping_Customer_AccountContact $_mapping
*
* Example:
* object(TNW_Salesforce_Model_Sync_Mapping_Customer_AccountContact)[530535]
* protected '_type' => string 'AccountContact' (length=7) // used $_mapping->getType()
* protected '_allowedMappingTypes' => // used $_mapping->getAllowedMappingTypes()
* array (size=6)
* 0 => string 'Customer' (length=8)
* 1 => string 'Customer Group' (length=14)
* 2 => string 'Billing' (length=7)
* 3 => string 'Shipping' (length=8)
* 4 => string 'Aitoc' (length=5)
* 5 => string 'Custom' (length=6)
* protected '_mappingCollection' => null // used $_mapping->getMappingCollection()
* protected '_sync' => // used $_mapping->getSync()
* object(TNW_QuoteSalesforce_Helper_Salesforce_Cart2quoteCustomer)
* ...
*/
$_mapping = $observer->getData('mapping');
/**
* Entity objects
* @var Mage_Customer_Model_Customer $_entity
*/
$_entity = $observer->getData('entity');
/**
* Additional entity objects
* @var null $_additional_object
*/
$_additional_object = $observer->getData('additionalObject');
// Your custom code
}
} |
...