Versions Compared

Key

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

...

Code Block
languagephp
titleExample Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function productSendAfter(Varien_Event_Observer $observer) {
		/**
		 * Array of Salesforce objects
		 * @var array $_data
		 * 
		 * Example:
		 * array (size=1)
		 *   231 => 
		 *     object(stdClass)[594]
		 *       public 'ProductCode' => string 'msj000' (length=6)
		 *       public 'Id' => string '01t24000003TfcHAAS' (length=18)
		 *       public 'IsActive' => int 1
		 *       public 'Name' => string 'French Cuff Cotton Twill Oxford' (length=31)
		 *       public 'tnw_mage_enterp__disableMagentoSync__c' => boolean true
		 *       public 'tnw_mage_basic__Magento_ID__c' => string '231' (length=3)
		 */
		$_data = $observer->getData('data');

		/**
		 * Array of Results
		 * @var array $_result
		 * 
		 * Example:
		 * array (size=1)
		 *   0 => 
		 *     object(stdClass)[352]
		 *       public 'created' => boolean false
		 *       public 'id' => string '01t24000003TfcHAAS' (length=18)
		 *       public 'success' => boolean true
		 */
		$_result = $observer->getData('result');

		// Your custom code
    }
 
}

...