/
tnw_salesforce_order_save
tnw_salesforce_order_save
An event is triggered to save order in the system Salesforce.
TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_order_save', array('order' => $_order));
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_save> <observers> <tnw_salesforce_order_save> <class>tnw_salesforce/observer</class> <method>orderSave</method> </tnw_salesforce_order_save> </observers> </tnw_salesforce_order_save> </events> </global> </config>
Example Observer
<?php /** * Class TNW_Salesforce_Model_Observer */ class TNW_Salesforce_Model_Observer { public function orderSave(Varien_Event_Observer $observer) { /** * Magento order object * @var Mage_Sales_Model_Order $_order */ $_order = $observer->getData('order'); // Your custom code } }
Related articles
Filter by label
There are no items with the selected labels at this time.
, multiple selections available,
Related content
How to make payments
How to make payments
More like this
Configuration Instructions
Configuration Instructions
More like this
Customers synchronization
Customers synchronization
More like this
Magento 2 CRON & MQ Setup
Magento 2 CRON & MQ Setup
More like this
Installation Instructions
Installation Instructions
More like this
Magento 2: Magento Extension
Magento 2: Magento Extension
More like this