Skip to content

Instantly share code, notes, and snippets.

@mhhansen
Last active August 29, 2015 14:07
Show Gist options
  • Save mhhansen/e5465f97aa0a87d02b0e to your computer and use it in GitHub Desktop.
Save mhhansen/e5465f97aa0a87d02b0e to your computer and use it in GitHub Desktop.
Magento Environment Emulator
$storeId = '0';
$appEmulation = Mage::getSingleton('core/app_emulation');
// start emulation
$envInfo = $appEmulation->startEnvironmentEmulation($storeId);
/**
* do your stuff in that Store
*/
// stop emulation
$appEmulation->stopEnvironmentEmulation($envInfo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment