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 invoiceNotesSendAfter(Varien_Event_Observer $observer) {
		/**
		 * Array of Salesforce objects
		 * @var stdClass[] $_data 
		 *
		 * Example:
		 * array (size=1)
		 *   1 => 
		 *     object(stdClass)[843]
		 *       public 'ParentId' => null
		 *       public 'IsPrivate' => int 0
		 *       public 'Body' => string 'Custom comment' (length=14)
		 *       public 'Title' => string 'Custom comment' (length=14)
		 */
		$_data = $observer->getData('data');

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

		// Your custom code
    }
 
}

...