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

Version 1 Current »

An event is triggered before sync account.

TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_sync_mapping_account_before', array('mapping' => $_mapping, 'entity' => $_entity, 'additionalObject' => $_additional_object));

 

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_sync_mapping_account_before>
                <observers>
                    <salesforce_sync_mapping_account_before_observer>
                        <class>tnw_salesforce/observer</class>
                        <method>syncMappingAccountBefore</method>
                    </salesforce_sync_mapping_account_before_observer>
                </observers>
            </tnw_salesforce_sync_mapping_account_before>
        </events>
    </global>
</config>
Example Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function syncMappingAccountBefore(Varien_Event_Observer $observer) {
        /**
         * Mapping objects
         * @var TNW_Quote_Model_Sync_Mapping_Quote_Opportunity $_mapping 
         * 
         * Example:
         *     object(TNW_Quote_Model_Sync_Mapping_Quote_Opportunity)[716]
         *       protected '_type' => string 'Quote' (length=5)         // used $_mapping->getType()
         *       protected '_allowedMappingTypes' =>                    // used $_mapping->getAllowedMappingTypes()
         *         array (size=6)
         *           0 => string 'Customer' (length=8)
         *           1 => string 'Billing' (length=7)
         *           2 => string 'Shipping' (length=8)
         *           3 => string 'Custom' (length=6)
         *           4 => string 'Quote' (length=5)
         *           5 => string 'Customer Group' (length=14)
         *       protected '_mappingCollection' => null                 // used $_mapping->getMappingCollection()
         *       protected '_sync' =>                                   // used $_mapping->getSync()
         *         object(TNW_Quote_Helper_Salesforce_Cart2quote)
         *       ...
         */
        $_mapping = $observer->getData('mapping');
 
        /**
         * Entity objects
         * @var TNW_Quote_Model_Qqadvcustomer $_entity 
         */
        $_entity = $observer->getData('entity');
 
        /**
         * Additional entity objects
         * @var null $_additional_object 
         */
        $_additional_object = $observer->getData('additionalObject');
 
		// Your custom code
    }
 
}

 

Filter by label

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

  • No labels