Versions Compared

Key

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

...

Code Block
languagexml
titleExample Config
<?xml version="1.0"?>
<config>
    <global>
        <events>
            <tnw_salesforce_order_notes_send_after>
                <observers>
                    <tnw_salesforce<salesforce_order_notes_send_after_after>observer>
                        <class>tnw_salesforce/observer</class>
                        <method>orderNotesSendAfter</method>
                    </tnw_salesforce_order_notes_send_after>after_observer>
                </observers>
            </tnw_salesforce_order_notes_send_after>
        </events>
    </global>
</config>
Code Block
languagephp
titleExample Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function orderNotesSendAfter(Varien_Event_Observer $observer) {
		/**
		 * Array of Salesforce objects
		 * @var stdClass[] $_data 
		 * 
		 * Example:
		 * array (size=1)
		 *   310 => // 310 - Magento order status history ID
		 *     object(stdClass)[529]
		 *       public 'ParentId' => string '80124000001479HAAQ' (length=18)
		 *       public 'IsPrivate' => int 0
		 *       public 'Body' => string 'Test comment' (length=12)
		 *       public 'Title' => string 'Test comment' (length=12)
		 */
		$_data = $observer->getData('data');

		/**
		 * Array of Results
		 * @var stdClass[] $_result
		 * 
		 * Example:
		 * array (size=1)
		 *   310 => // 310 - Magento order status history ID
		 *     object(stdClass)[922]
		 *       public 'created' => boolean true
		 *       public 'id' => string '00224000002qDZSAA2' (length=18)
		 *       public 'success' => boolean true
		 */
		$_result = $observer->getData('result');

		// Your custom code
    }
 
}

...