tnw_salesforce_product_send_after

tnw_salesforce_product_send_after

An event is triggered after sending data in Salesforce

TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_product_send_after', array('data' => $_data, 'result' => $_result));

 

How to use this event:

Several steps are involved into utilizing this event:

  1. config.xml

    1. a listener should be added for this event

    2. a listener should point to a Magento Observer module and a method in that observer

  2. Magento Observer

    1. holds a method where you can add your custom logic

Example Config
<?xml version="1.0"?> <config> <global> <events> <tnw_salesforce_product_send_after> <observers> <salesforce_product_send_after_observer> <class>tnw_salesforce/observer</class> <method>productSendAfter</method> </salesforce_product_send_after_observer> </observers> </tnw_salesforce_product_send_after>   </events> </global> </config>
Example Observer
<?php /** * Class TNW_Salesforce_Model_Observer */ class TNW_Salesforce_Model_Observer {   public function productSendAfter(Varien_Event_Observer $observer) { /** * Array of Salesforce objects * @var array $_data * * Example: * array (size=1) * 231 => // 231 - Magento product ID * object(stdClass)[594] * public 'ProductCode' => string 'msj000' (length=6) * public 'Id' => string '01t24000003TfcHAAS' (length=18) * public 'IsActive' => int 1 * public 'Name' => string 'French Cuff Cotton Twill Oxford' (length=31) * public 'tnw_mage_enterp__disableMagentoSync__c' => boolean true * public 'tnw_mage_basic__Magento_ID__c' => string '231' (length=3)  */ $_data = $observer->getData('data'); /** * Array of Results * @var array $_result * * Example: * array (size=1) * 0 => * object(stdClass)[352] * public 'created' => boolean false * public 'id' => string '01t24000003TfcHAAS' (length=18) * public 'success' => boolean true  */ $_result = $observer->getData('result'); // Your custom code }   }

 

Related articles