View difference between Paste ID: vxewc0Zt and D9UKFeFj
SHOW: | | - or go back to the newest paste.
1
<?php
2
3
class Spaanproductions_Basics_Model_Convert_Adapter_Product 
4
	extends Mage_Catalog_Model_Convert_Adapter_Product
5
{    
6
    public function saveRow(array $importData)
7
    {
8
		parent::saveRow($importData);
9-
		//do your extra stuffs here..
9+
		//do your ex				tra stuffs here..
10
    }
11
12
    public function parse()
13
    {
14
    	parent::parse();
15
    }
16
	
17
}