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 invoiceSendAfter(Varien_Event_Observer $observer) {
		/**
		 * Array of Salesforce objects
		 * @var stdClass[] $_data 
		 * 
		 * Example:
		 * array (size=1)
		 *   103000007 => // Magento order number
		 *     object(stdClass)[580]
		 *       public 'AcctSeed__Status__c' => string 'In Process' (length=10)
		 *       public 'tnw_aseed__Magento_Website__c' => string 'a002400000CSEGD' (length=15)
		 *       public 'tnw_aseed__Magento_ID__c' => string '103000007' (length=9)
		 *       public 'AcctSeedERP__Sales_Order__c' => string 'a1524000004B2jNAAS' (length=18)
		 *       public 'AcctSeed__Customer__c' => string '0012400000Q0YeMAAV' (length=18)
		 *       public 'AcctSeed__Billing_Contact__c' => string '0032400000M41eDAAR' (length=18)
		 */
		$_data = $observer->getData('data');

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

		// Your custom code
    }
 
}

...