1 package FS::log_context;
4 use base qw( FS::Record );
5 use FS::Record qw( qsearch qsearchs );
10 FS::cust_main::Billing::bill_and_collect
11 FS::cust_main::Billing::bill
18 upgrade_taxable_billpkgnum
19 freeside-paymentech-upload
20 freeside-paymentech-download
25 FS::log_context - Object methods for log_context records
31 $record = new FS::log_context \%hash;
32 $record = new FS::log_context { 'column' => 'value' };
34 $error = $record->insert;
36 $error = $new_record->replace($old_record);
38 $error = $record->delete;
40 $error = $record->check;
44 An FS::log_context object represents a context tag attached to a log entry
45 (L<FS::log>). FS::log_context inherits from FS::Record. The following
46 fields are currently supported:
50 =item logcontextnum - primary key
52 =item lognum - lognum (L<FS::log> foreign key)
54 =item context - context
64 Creates a new context tag. To add the example to the database, see
67 Note that this stores the hash reference, not a distinct copy of the hash it
68 points to. You can ask the object for a copy with the I<hash> method.
72 sub table { 'log_context'; }
76 Adds this record to the database. If there is an error, returns the error,
77 otherwise returns false.
81 Delete this record from the database.
83 =item replace OLD_RECORD
85 Replaces the OLD_RECORD with this one in the database. If there is an error,
86 returns the error, otherwise returns false.
90 Checks all fields to make sure this is a valid example. If there is
91 an error, returns the error, otherwise returns false. Called by the insert
100 $self->ut_numbern('logcontextnum')
101 || $self->ut_number('lognum')
102 || $self->ut_text('context') #|| $self->ut_enum('context', \@contexts)
104 return $error if $error;
117 Returns a list of all valid contexts.
121 sub contexts { @contexts }
129 L<FS::Log>, L<FS::Record>, schema.html from the base documentation.