tnw_salesforce_contact_send_after
An event is triggered after contact sending data in Salesforce.
TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_contact_send_after', array('data' => $_data, 'result' => $_result));
How to use this event:
Several steps are involved into utilizing this event:
- config.xml
- a listener should be added for this event
- a listener should point to a Magento Observer module and a method in that observer
- Magento Observer
- holds a method where you can add your custom logic
Example Config
<?xml version="1.0"?> <config> <global> <events> <tnw_salesforce_contact_send_after> <observers> <tnw_salesforce_contact_send_after> <class>tnw_salesforce/observer</class> <method>contactSendAfter</method> </tnw_salesforce_contact_send_after> </observers> </tnw_salesforce_contact_send_after> </events> </global> </config>
Example Observer
<?php /** * Class TNW_Salesforce_Model_Observer */ class TNW_Salesforce_Model_Observer { public function contactSendAfter(Varien_Event_Observer $observer) { /** * Array of Salesforce objects * @var stdClass[] $_data * * Example: * array (size=1) * 24 => * object(stdClass)[481] * public 'OwnerId' => string '00524000001veuuAAA' (length=18) * public 'Email' => string 'jack@example.com' (length=16) * public 'FirstName' => string 'Jack' (length=4) * public 'LastName' => string 'Fitz' (length=4) * public 'MailingStreet' => string '7 N Willow St' (length=13) * public 'MailingCity' => string 'Montclair' (length=9) * public 'MailingState' => string 'New Jersey' (length=10) * public 'MailingPostalCode' => string '07042' (length=5) * public 'MailingCountry' => string 'US' (length=2) * public 'OtherStreet' => string '7 N Willow St' (length=13) * public 'OtherCity' => string 'Montclair' (length=9) * public 'OtherState' => string 'New Jersey' (length=10) * public 'OtherPostalCode' => string '07042' (length=5) * public 'OtherCountry' => string 'US' (length=2) * public 'OtherPhone' => string '222-555-4190' (length=12) * public 'Phone' => string '222-555-4190' (length=12) * public 'Birthdate' => string '2001-01-02' (length=10) * public 'tnw_mage_basic__Magento_ID__c' => string '24' (length=2) * public 'HasOptedOutOfEmail' => int 1 * public 'tnw_mage_enterp__disableMagentoSync__c' => boolean true * public 'AccountId' => string '0012400000Q2dcKAAR' (length=18) * public 'tnw_mage_basic__Magento_Website__c' => string 'a002400000CSEGD' (length=15) * public 'Id' => string '0032400000MF2tAAAT' (length=18) */ $_data = $observer->getData('data'); /** * Array of Results * @var stdClass[] $_result * * Example: * array (size=1) * 0 => * object(stdClass)[546] * public 'created' => boolean false * public 'id' => string '0032400000MF2tAAAT' (length=18) * public 'success' => boolean true */ $_result = $observer->getData('result'); // Your custom code } }
Related articles
Filter by label
There are no items with the selected labels at this time.