modular price plans!
[freeside.git] / FS / FS / part_pkg_option.pm
1 package FS::part_pkg_option;
2
3 use strict;
4 use vars qw( @ISA );
5 use FS::Record qw( qsearch qsearchs );
6 use FS::part_pkg;
7
8 @ISA = qw(FS::Record);
9
10 =head1 NAME
11
12 FS::part_pkg_option - Object methods for part_pkg_option records
13
14 =head1 SYNOPSIS
15
16   use FS::part_pkg_option;
17
18   $record = new FS::part_pkg_option \%hash;
19   $record = new FS::part_pkg_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_pkg_option object represents an package definition option.
32 FS::part_pkg_option inherits from FS::Record.  The following fields are
33 currently supported:
34
35 =over 4
36
37 =item optionnum - primary key
38
39 =item pkgpart - package definition (see L<FS::part_pkg>)
40
41 =item optionname - option name
42
43 =item optionvalue - option value
44
45 =back
46
47 =head1 METHODS
48
49 =over 4
50
51 =item new HASHREF
52
53 Creates a new package definition option.  To add the package definition option
54 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_pkg_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 package definition option.  If
94 there is an error, returns the error, otherwise returns false.  Called by the
95 insert 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('optionnum')
107     || $self->ut_foreign_key('pkgpart', 'part_pkg', 'pkgpart')
108     || $self->ut_alpha('optionname')
109     || $self->ut_anything('optionvalue')
110   ;
111   return $error if $error;
112
113   #check options & values?
114
115   $self->SUPER::check;
116 }
117
118 =back
119
120 =head1 BUGS
121
122 Possibly.
123
124 =head1 SEE ALSO
125
126 L<FS::part_pkg>, L<FS::Record>, schema.html from the base documentation.
127
128 =cut
129
130 1;
131