X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Flog_context.pm;fp=FS%2FFS%2Flog_context.pm;h=403829ac232fdbb9686f5a53c631c9f53191319e;hp=db97c9b6829323a54f8bc4e2ba7885cd9c2a49ac;hb=cd278c142b76d30adf9e51ae4c47d01d754cdd59;hpb=5e0a78a1dca6d39ea70c8c01002024929e36f2d8 diff --git a/FS/FS/log_context.pm b/FS/FS/log_context.pm index db97c9b68..403829ac2 100644 --- a/FS/FS/log_context.pm +++ b/FS/FS/log_context.pm @@ -67,8 +67,6 @@ points to. You can ask the object for a copy with the I method. =cut -# the new method can be inherited from FS::Record, if a table method is defined - sub table { 'log_context'; } =item insert @@ -76,27 +74,15 @@ sub table { 'log_context'; } Adds this record to the database. If there is an error, returns the error, otherwise returns false. -=cut - -# the insert method can be inherited from FS::Record - =item delete Delete this record from the database. -=cut - -# the delete method can be inherited from FS::Record - =item replace OLD_RECORD Replaces the OLD_RECORD with this one in the database. If there is an error, returns the error, otherwise returns false. -=cut - -# the replace method can be inherited from FS::Record - =item check Checks all fields to make sure this is a valid example. If there is @@ -105,17 +91,13 @@ and replace methods. =cut -# the check method should currently be supplied - FS::Record contains some -# data checking routines - sub check { my $self = shift; my $error = $self->ut_numbern('logcontextnum') || $self->ut_number('lognum') - #|| $self->ut_enum('context', \@contexts) - #|| $self->ut_enum('context', \@contexts) + || $self->ut_text('context') #|| $self->ut_enum('context', \@contexts) ; return $error if $error;