1 package FS::access_user_pref;
2 use base qw(FS::Record);
8 FS::access_user_pref - Object methods for access_user_pref records
12 use FS::access_user_pref;
14 $record = new FS::access_user_pref \%hash;
15 $record = new FS::access_user_pref { 'column' => 'value' };
17 $error = $record->insert;
19 $error = $new_record->replace($old_record);
21 $error = $record->delete;
23 $error = $record->check;
27 An FS::access_user_pref object represents an per-user preference. Preferenaces
28 are also used to store transient state information (server-side "cookies").
29 FS::access_user_pref inherits from FS::Record. The following fields are
34 =item prefnum - primary key
36 =item usernum - Internal access user (see L<FS::access_user>)
52 Creates a new preference. To add the preference to the database, see L<"insert">.
54 Note that this stores the hash reference, not a distinct copy of the hash it
55 points to. You can ask the object for a copy with the I<hash> method.
59 # the new method can be inherited from FS::Record, if a table method is defined
61 sub table { 'access_user_pref'; }
65 Adds this record to the database. If there is an error, returns the error,
66 otherwise returns false.
70 # the insert method can be inherited from FS::Record
74 Delete this record from the database.
78 # the delete method can be inherited from FS::Record
80 =item replace OLD_RECORD
82 Replaces the OLD_RECORD with this one in the database. If there is an error,
83 returns the error, otherwise returns false.
87 # the replace method can be inherited from FS::Record
91 Checks all fields to make sure this is a valid preference. If there is
92 an error, returns the error, otherwise returns false. Called by the insert
97 # the check method should currently be supplied - FS::Record contains some
98 # data checking routines
104 $self->ut_numbern('prefnum')
105 || $self->ut_number('usernum')
106 || $self->ut_text('prefname')
107 #|| $self->ut_textn('prefvalue')
108 || $self->ut_anything('prefvalue')
110 return $error if $error;
121 L<FS::access_user>, L<FS::Record>, schema.html from the base documentation.