1 package FS::part_pkg_msgcat;
4 use base qw( FS::Record );
6 #use FS::Record qw( qsearch qsearchs );
11 FS::part_pkg_msgcat - Object methods for part_pkg_msgcat records
15 use FS::part_pkg_msgcat;
17 $record = new FS::part_pkg_msgcat \%hash;
18 $record = new FS::part_pkg_msgcat { 'column' => 'value' };
20 $error = $record->insert;
22 $error = $new_record->replace($old_record);
24 $error = $record->delete;
26 $error = $record->check;
30 An FS::part_pkg_msgcat object represents localized labels of a package
31 definition. FS::part_pkg_msgcat inherits from FS::Record. The following
32 fields are currently supported:
50 Localized package name (customer-viewable)
54 Localized package comment (non-customer-viewable), optional
64 Creates a new record. To add the record to the database, see L<"insert">.
66 Note that this stores the hash reference, not a distinct copy of the hash it
67 points to. You can ask the object for a copy with the I<hash> method.
71 # the new method can be inherited from FS::Record, if a table method is defined
73 sub table { 'part_pkg_msgcat'; }
77 Adds this record to the database. If there is an error, returns the error,
78 otherwise returns false.
82 # the insert method can be inherited from FS::Record
86 Delete this record from the database.
90 # the delete method can be inherited from FS::Record
92 =item replace OLD_RECORD
94 Replaces the OLD_RECORD with this one in the database. If there is an error,
95 returns the error, otherwise returns false.
99 # the replace method can be inherited from FS::Record
103 Checks all fields to make sure this is a valid record. If there is
104 an error, returns the error, otherwise returns false. Called by the insert
109 # the check method should currently be supplied - FS::Record contains some
110 # data checking routines
116 $self->ut_numbern('pkgpartmsgnum')
117 || $self->ut_foreign_key('pkgpart', 'part_pkg', 'pkgpart')
118 || $self->ut_enum('locale', [ FS::Locales->locales ] )
119 || $self->ut_text('pkg')
120 || $self->ut_textn('comment')
122 return $error if $error;
133 L<FS::Record>, schema.html from the base documentation.