Created
November 10, 2015 20:25
-
-
Save damienwebdev/4a76156bb644b3395c14 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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