...
Code Block | ||||
---|---|---|---|---|
| ||||
<?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_Contact $_mapping * * Example: * object(TNW_Salesforce_Model_Sync_Mapping_Customer_Contact)[535] * protected '_type' => string 'Contact' (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() * 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 '32' (length=2) * 'local_field' => string 'Customer : dob' (length=14) * 'sf_field' => string 'Birthdate' (length=9) * 'attribute_id' => string '11' (length=2) * 'backend_type' => string 'datetime' (length=8) * 'sf_object' => string 'Contact' (length=7) * 'default_value' => null * 'local_field_type' => string 'Customer' (length=8) * 'local_field_attribute_code' => string 'dob' (length=3) * ... * ... * protected '_sync' => 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 } } |
...