Skip to content

Instantly share code, notes, and snippets.

@willboudle
willboudle / exportAttr.php
Created December 22, 2015 23:11
Export Magento Attributes to csv
<?php
define('MAGENTO', realpath(dirname(__FILE__)));
require_once MAGENTO . '/app/Mage.php';
Mage::app();
$entity_type_id = Mage::getModel('catalog/product')->getResource()->getTypeId();
prepareCollection($entity_type_id);
function prepareCollection($ent_type_id){
$resource = Mage::getSingleton('core/resource');