1234567891011121314151617181920212223 |
- <?php
- 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'
- );
- }
- ?>
|