An event is triggered to allow PowerSync product to customize 'Sales Order Status' form in Magento. after sending data in Salesforce
Code Block |
---|
language | php |
---|
title | TNW_Salesforce_Block_Sales_Order_Status_New_Form |
---|
|
Mage::dispatchEvent('tnw_salesforce_product_send_after', array('data' => $_data, 'result' => $_result)); |
...
Code Block |
---|
language | xml |
---|
title | Example Config |
---|
|
<?xml version="1.0"?>
<config>
<global>
<events>
<tnw_salesforce_product_send_after>
<observers>
<tnw_salesforce<salesforce_product_send_after_after>observer>
<class>tnw_salesforce/observer</class>
<method>productSendAfter</method>
</tnw_salesforce_product_send_after_after>observer>
</observers>
</tnw_salesforce_product_send_after>
</events>
</global>
</config> |
Code Block |
---|
language | php |
---|
title | 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
}
} |
...