allow any text for log context
[freeside.git] / FS / FS / log_context.pm
1 package FS::log_context;
2
3 use strict;
4 use base qw( FS::Record );
5 use FS::Record qw( qsearch qsearchs );
6
7 my @contexts = ( qw(
8   test
9   bill_and_collect
10   FS::cust_main::Billing::bill_and_collect
11   FS::cust_main::Billing::bill
12   Cron::bill
13   Cron::upload
14   spool_upload
15   daily
16   queue
17   upgrade
18   upgrade_taxable_billpkgnum
19 ) );
20
21 =head1 NAME
22
23 FS::log_context - Object methods for log_context records
24
25 =head1 SYNOPSIS
26
27   use FS::log_context;
28
29   $record = new FS::log_context \%hash;
30   $record = new FS::log_context { 'column' => 'value' };
31
32   $error = $record->insert;
33
34   $error = $new_record->replace($old_record);
35
36   $error = $record->delete;
37
38   $error = $record->check;
39
40 =head1 DESCRIPTION
41
42 An FS::log_context object represents a context tag attached to a log entry
43 (L<FS::log>).  FS::log_context inherits from FS::Record.  The following 
44 fields are currently supported:
45
46 =over 4
47
48 =item logcontextnum - primary key
49
50 =item lognum - lognum (L<FS::log> foreign key)
51
52 =item context - context
53
54 =back
55
56 =head1 METHODS
57
58 =over 4
59
60 =item new HASHREF
61
62 Creates a new context tag.  To add the example to the database, see 
63 L<"insert">.
64
65 Note that this stores the hash reference, not a distinct copy of the hash it
66 points to.  You can ask the object for a copy with the I<hash> method.
67
68 =cut
69
70 sub table { 'log_context'; }
71
72 =item insert
73
74 Adds this record to the database.  If there is an error, returns the error,
75 otherwise returns false.
76
77 =item delete
78
79 Delete this record from the database.
80
81 =item replace OLD_RECORD
82
83 Replaces the OLD_RECORD with this one in the database.  If there is an error,
84 returns the error, otherwise returns false.
85
86 =item check
87
88 Checks all fields to make sure this is a valid example.  If there is
89 an error, returns the error, otherwise returns false.  Called by the insert
90 and replace methods.
91
92 =cut
93
94 sub check {
95   my $self = shift;
96
97   my $error = 
98     $self->ut_numbern('logcontextnum')
99     || $self->ut_number('lognum')
100     || $self->ut_text('context') #|| $self->ut_enum('context', \@contexts)
101   ;
102   return $error if $error;
103
104   $self->SUPER::check;
105 }
106
107 =back
108
109 =head1 CLASS METHODS
110
111 =over 4
112
113 =item contexts
114
115 Returns a list of all valid contexts.
116
117 =cut
118
119 sub contexts { @contexts }
120
121 =back
122
123 =head1 BUGS
124
125 =head1 SEE ALSO
126
127 L<FS::Log>, L<FS::Record>, schema.html from the base documentation.
128
129 =cut
130
131 1;
132