Skip to content

Instantly share code, notes, and snippets.

@fabriziomachado
Created October 20, 2011 12:22
Show Gist options
  • Save fabriziomachado/1301014 to your computer and use it in GitHub Desktop.
Save fabriziomachado/1301014 to your computer and use it in GitHub Desktop.
application/models/Account.php
<?php
class Account extends ActiveRecord\Model {
static $belongs_to = array(
array('person')
);
static $validates_inclusion_of = array(
array('provider', 'in' => array('twitter','facebook'),
'message' => 'Not included in the list of valids providers autentications' )
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment