This file contains hidden or 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 | |
/** | |
* @author Pieter Paßmann @ graphodata AG 2013 | |
* @website graphodata.de | |
* @description Resize any image with your own helper. | |
*/ | |
class Graphodata_Resizeimg_Helper_Data extends Mage_Core_Helper_Abstract | |
{ | |
/** |
This file contains hidden or 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 | |
public function removeOldProductImages($sku) { | |
// Produkt laden | |
$product = Mage::getModel('catalog/product'); | |
if (! ($id = $product->getIdBySku($sku))) { | |
throw new Exception("! Produkt '".$sku."' wurde nicht gefunden"); | |
} | |
// Funktioniert nicht: |
NewerOlder