| 1234567891011121314151617181920212223 | <?php/** * Define a user for a  firm. * @author valentin carruesco * @category Core * @license copyright */class UserPreference extends Entity{	public $id,$user,$key,$value;	protected $TABLE_NAME = 'user_preference';	protected $links = array( 		'user' => 'User.login'	);	protected $fields =	array(		'id' => 'key',		'user' => 'string',		'key' => 'string',		'value' => 'longstring'	);}?>
 |