tnw_salesforce_invoice_notes_send_before

An event is triggered before sending data in Salesforce.

TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_invoice_notes_send_before', array('data' => $_data));

 

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_invoice_notes_send_before>
                <observers>
                    <salesforce_invoice_notes_send_before_observer>
                        <class>tnw_salesforce/observer</class>
                        <method>invoiceNotesSendBefore</method>
                    </salesforce_invoice_notes_send_before_observer>
                </observers>
            </tnw_salesforce_invoice_notes_send_before>
        </events>
    </global>
</config>
Example Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function invoiceNotesSendBefore(Varien_Event_Observer $observer) {
        /**
         * Array of Salesforce objects
         * @var stdClass[] $_data 
         *
         * Example:
         * array (size=1)
         *   1 => 
         *     object(stdClass)[843]
         *       public 'ParentId' => null
         *       public 'IsPrivate' => int 0
         *       public 'Body' => string 'Custom comment' (length=14)
         *       public 'Title' => string 'Custom comment' (length=14)
         */
		$_data = $observer->getData('data');

		// Your custom code
    }
 
}

 

Filter by label

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