tnw_salesforce_sync_mapping_product2_after

An event is triggered after sync product.

TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_sync_mapping_product2_after', 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_product2_after>
                <observers>
                    <salesforce_sync_mapping_product2_after_observer>
                        <class>tnw_salesforce/observer</class>
                        <method>syncMappingProduct2After</method>
                    </salesforce_sync_mapping_product2_after_observer>
                </observers>
            </tnw_salesforce_sync_mapping_product2_after>
        </events>
    </global>
</config>
Example Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function syncMappingProduct2After(Varien_Event_Observer $observer) {
		/**
		 * Mapping objects
		 * @var TNW_Salesforce_Model_Sync_Mapping_Product_Product $_mapping 
		 * 
		 * Example:
		 *     object(TNW_Salesforce_Model_Sync_Mapping_Product_Product)[588]
		 *      protected '_type' => string 'Product2' (length=8)           // used $_mapping->getType()
		 *      protected '_allowedMappingTypes' =>                         // used $_mapping->getAllowedMappingTypes()
		 *        array (size=3)
		 *          0 => string 'Product' (length=7)
		 *          1 => string 'Product Inventory' (length=17)
		 *          2 => string 'Custom' (length=6)
		 *       protected '_mappingCollection' =>					        // used $_mapping->getMappingCollection()
		 *         object(TNW_Salesforce_Model_Mysql4_Mapping_Collection)[621]
		 *           protected '_items' => 
		 *             array (size=1)
		 *               object(TNW_Salesforce_Model_Mapping)[377]
		 *                 protected '_data' => 
		 *                   array (size=9)
		 *                     'mapping_id' => string '9' (length=1)
		 *                     'local_field' => string 'Product : sku' (length=13)
		 *                     'sf_field' => string 'ProductCode' (length=11)
		 *                     'attribute_id' => string '74' (length=2)
		 *                     'backend_type' => string 'static' (length=6)
		 *                     'sf_object' => string 'Product2' (length=8)
		 *                     'default_value' => null
		 *                     'local_field_type' => string 'Product' (length=7)
		 *                     'local_field_attribute_code' => string 'sku' (length=3)
		 *                 ...
		 *           ...
		 *       protected '_sync' => 								         // used $_mapping->getSync()
		 *         object(TNW_Salesforce_Helper_Salesforce_Product)
		 *       ...
		 */
		$_mapping = $observer->getData('mapping');

		/**
		 * Entity objects
		 * @var Mage_Catalog_Model_Product $_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.