Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@cmuench
Created July 10, 2012 08:28
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save cmuench/3082029 to your computer and use it in GitHub Desktop.
Save cmuench/3082029 to your computer and use it in GitHub Desktop.
Magento: Save multiple models in one transaction
<?php
// $foo = Mage::getModel('.....
// $bar = Mage::getModel('.....
$transaction = Mage::getModel('core/resource_transaction');
$transaction->addObject($foo);
$transaction->addObject($bar);
$transaction->save(); // runs save on all objects. On error -> rollback
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment