tnw_salesforce_contact_send_before

An event is triggered before contact sending data in Salesforce.

TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_contact_send_before', array('data' => $_data));

 

How to use this event:

Several steps are involved into utilizing this event:

  1. config.xml
    1. a listener should be added for this event
    2. a listener should point to a Magento Observer module and a method in that observer
  2. Magento Observer
    1. holds a method where you can add your custom logic
Example Config
<?xml version="1.0"?>
<config>
    <global>
        <events>
            <tnw_salesforce_contact_send_before>
                <observers>
                    <tnw_salesforce_contact_send_before>
                        <class>tnw_salesforce/observer</class>
                        <method>contactSendBefore</method>
                    </tnw_salesforce_contact_send_before>
                </observers>
            </tnw_salesforce_contact_send_before>
        </events>
    </global>
</config>
Example Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function contactSendBefore(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');

		// Your custom code
    }
 
}

 

Filter by label

There are no items with the selected labels at this time.