Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

An event is triggered after after contact sending data in Salesforce.

Code Block
languagephp
titleTNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_contact_send_after', array('data' => $_data, 'result' => $_result));

...

Code Block
languagephp
titleExample 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 mixedstdClass[] $_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
    }
 
}

...