Created
March 28, 2011 20:02
-
-
Save iammerrick/891152 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 | |
| $user = ORM::factory('user'); | |
| $user->landlord->first_name = 'Merrick Christensen'; | |
| $user->settings->public = TRUE; | |
| $user->save(); // Runs validation on the landlord model, settings model, user model, and saves them all in the proper order of dependency for has-* relationships. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment