Skip to content

Instantly share code, notes, and snippets.

@damienwebdev
Created November 10, 2015 20:25
Show Gist options
  • Save damienwebdev/4a76156bb644b3395c14 to your computer and use it in GitHub Desktop.
Save damienwebdev/4a76156bb644b3395c14 to your computer and use it in GitHub Desktop.
<?php
public function createObjectWithRelations($data){
$parent->create($data['parent']);
foreach($data['children' as $children){
$item = Mage::getModel('namespace/item');
$item->setData('stuff');
$item->parent_id = $parent->id
$item->save()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment