X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Faccess_user_pref.pm;h=954eaa71ef5e01889031e6053a67ad5223806a91;hp=ff957f2a149e14cdca5729b1d4b1c7a2c9455dcb;hb=389b6f1116c3309c2ee57a6c295ed1a793503095;hpb=2c757d7db4cb6a7b9655de13206fcc84fb7ce61f diff --git a/FS/FS/access_user_pref.pm b/FS/FS/access_user_pref.pm index ff957f2a1..954eaa71e 100644 --- a/FS/FS/access_user_pref.pm +++ b/FS/FS/access_user_pref.pm @@ -1,10 +1,7 @@ package FS::access_user_pref; +use base qw(FS::Record); use strict; -use vars qw( @ISA ); -use FS::Record qw( qsearch qsearchs ); - -@ISA = qw(FS::Record); =head1 NAME @@ -27,19 +24,22 @@ FS::access_user_pref - Object methods for access_user_pref records =head1 DESCRIPTION -An FS::access_user_pref object represents an example. FS::access_user_pref inherits from -FS::Record. The following fields are currently supported: +An FS::access_user_pref object represents an per-user preference. Preferenaces +are also used to store transient state information (server-side "cookies"). +FS::access_user_pref inherits from FS::Record. The following fields are +currently supported: =over 4 =item prefnum - primary key -=item usernum - +=item usernum - Internal access user (see L) =item prefname - =item prefvalue - +=item expiration - =back @@ -49,7 +49,7 @@ FS::Record. The following fields are currently supported: =item new HASHREF -Creates a new example. To add the example to the database, see L<"insert">. +Creates a new preference. To add the preference to the database, see L<"insert">. Note that this stores the hash reference, not a distinct copy of the hash it points to. You can ask the object for a copy with the I method. @@ -88,7 +88,7 @@ returns the error, otherwise returns false. =item check -Checks all fields to make sure this is a valid example. If there is +Checks all fields to make sure this is a valid preference. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods. @@ -104,7 +104,8 @@ sub check { $self->ut_numbern('prefnum') || $self->ut_number('usernum') || $self->ut_text('prefname') - || $self->ut_textn('prefvalue') + #|| $self->ut_textn('prefvalue') + || $self->ut_anything('prefvalue') ; return $error if $error; @@ -115,11 +116,9 @@ sub check { =head1 BUGS -The author forgot to customize this manpage. - =head1 SEE ALSO -L, schema.html from the base documentation. +L, L, schema.html from the base documentation. =cut