Skip to content

Instantly share code, notes, and snippets.

@iammerrick
Created March 28, 2011 20:02
Show Gist options
  • Select an option

  • Save iammerrick/891152 to your computer and use it in GitHub Desktop.

Select an option

Save iammerrick/891152 to your computer and use it in GitHub Desktop.
<?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