00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 $installer = $this;
00028
00029
00030 $attributes = array(
00031 $installer->getAttributeId('catalog_product', 'price'),
00032 $installer->getAttributeId('catalog_product', 'special_price'),
00033 $installer->getAttributeId('catalog_product', 'special_from_date'),
00034 $installer->getAttributeId('catalog_product', 'special_to_date'),
00035 $installer->getAttributeId('catalog_product', 'cost'),
00036 $installer->getAttributeId('catalog_product', 'tier_price'),
00037 );
00038
00039 $sql = $installer->getConnection()->quoteInto("SELECT * FROM `{$installer->getTable('eav_attribute')}` WHERE attribute_id IN (?)", $attributes);
00040 $data = $installer->getConnection()->fetchAll($sql);
00041
00042 foreach ($data as $row) {
00043 $row['apply_to'] = array_flip(explode(',', $row['apply_to']));
00044 unset($row['apply_to']['grouped']);
00045 $row['apply_to'] = implode(',', array_flip($row['apply_to']));
00046
00047 $installer->run("UPDATE `{$installer->getTable('eav_attribute')}`
00048 SET `apply_to` = '{$row['apply_to']}'
00049 WHERE `attribute_id` = {$row['attribute_id']}");
00050 }