One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
# you need these installed if you want to: | |
sudo apt-get update | |
# resize images | |
sudo apt-get install imagemagick -y | |
# compress jpg and png files | |
sudo apt-get install jpegoptim optipng | |
# compress video's | |
sudo apt-get install ffmpeg | |
<?php | |
/* @var $installer Mage_Eav_Model_Entity_Setup */ | |
$installer = Mage::getModel('eav/entity_setup', 'default_setup'); | |
$installer->startSetup(); | |
// Example createEntityTables() call | |
$installer->createEntityTables('example_supplier'); |