tnw_salesforce_order_notes_send_after
An event is triggered after sending order notes in service Salesforce.
TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_order_notes_send_after', array('data' => $_data, 'result' => $_result));
How to use this event:
Several steps are involved into utilizing this event:
config.xml
a listener should be added for this event
a listener should point to a Magento Observer module and a method in that observer
Magento Observer
holds a method where you can add your custom logic
Example Config
<?xml version="1.0"?>
<config>
<global>
<events>
<tnw_salesforce_order_notes_send_after>
<observers>
<salesforce_order_notes_send_after_observer>
<class>tnw_salesforce/observer</class>
<method>orderNotesSendAfter</method>
</salesforce_order_notes_send_after_observer>
</observers>
</tnw_salesforce_order_notes_send_after>
</events>
</global>
</config>Example 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
}
}