Created
September 7, 2015 11:29
-
-
Save r1tt3r/b14ee99da2596adb0a3d to your computer and use it in GitHub Desktop.
Remove todas as imagens dos produtos cadastrados no magento
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'app/Mage.php'; | |
Mage::app(); | |
Mage::app()->getStore()->setId(Mage_Core_Model_App::ADMIN_STORE_ID); | |
$products = Mage::getModel('catalog/product')->getCollection(); | |
//->addAttributeToFilter('entity_id', array('gt' => 14000)); | |
$mediaApi = Mage::getModel("catalog/product_attribute_media_api"); | |
foreach($products as $product) { | |
$prodID = $product->getId(); | |
$_product = Mage::getModel('catalog/product')->load($prodID); | |
$items = $mediaApi->items($_product->getId()); | |
foreach($items as $item) { | |
$mediaApi->remove($_product->getId(), $item['file']); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment