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