Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

An event is triggered after sending order contact roles in service Salesforce.

TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_order_contact_roles_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_order_contact_roles_send_after>
                <observers>
                    <tnw_salesforce_order_contact_roles_send_after>
                        <class>tnw_salesforce/observer</class>
                        <method>orderContactRolesSendAfter</method>
                    </tnw_salesforce_order_contact_roles_send_after>
                </observers>
            </tnw_salesforce_order_contact_roles_send_after>
        </events>
    </global>
</config>
Example Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function orderContactRolesSendAfter(Varien_Event_Observer $observer) {
		/** 
		 * Array of Salesforce objects
		 * @var array $_data
		 */
		$_data = $observer->getData('data');

		/**
		 * Array of Results
		 * @var array $_result
		 */
		$_result = $observer->getData('result');

		// Your custom code
    }
 
}

 

Filter by label

There are no items with the selected labels at this time.

  • No labels