An event is triggered after sync contactlead.
Code Block |
---|
language | php |
---|
title | TNW_Salesforce_Block_Sales_Order_Status_New_Form |
---|
|
Mage::dispatchEvent('tnw_salesforce_sync_mapping_lead_after', 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 syncMappingLeadAfter(Varien_Event_Observer $observer) {
/**
* Mapping objects
* @var TNW_Salesforce_Model_Sync_Mapping_Customer_ContactLead $_mapping
*
* Example:
* object(TNW_Salesforce_Model_Sync_Mapping_Customer_ContactLead)[535500]
* protected '_type' => string 'ContactLead' (length=74) // used $_mapping->getType()
* protected '_allowedMappingTypes' => // used $_mapping->getAllowedMappingTypes()
* protected '_email' => string 'jack@example.com' (length=16)
* 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' => // used $_mapping->getMappingCollection()
* object(TNW_Salesforce_Model_Mysql4_Mapping_Collection)[621]
* protected '_items' =>
* array (size=1)
* object(TNW_Salesforce_Model_Mapping)[377]
* protected '_data' =>
* array (size=9)
* 'mapping_id' => string '3219' (length=2)
* 'local_field' => string 'CustomerCustom : doblead_source' (length=1420)
* 'sf_field' => string 'BirthdateLeadSource' (length=910)
* 'attribute_id' => string '11' (length=2)
null
* 'backend_type' => string 'datetime' (length=8)null
* 'sf_object' => string 'ContactLead' (length=74)
* 'default_value' => nullstring 'salesforce_customer/lead_config/lead_source' (length=43)
* 'local_field_type' => string 'CustomerCustom' (length=86)
* 'local_field_attribute_code' => string 'doblead_source' (length=311)
* ...
* ...
* protected '_sync' => // used $_mapping->getSync()
* object(TNW_Salesforce_Helper_Salesforce_Customer)
* ...
*/
$_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
}
} |
...