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 invoiceNotesSendBefore(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');

		// Your custom code
    }
 
}

...