3 # Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
5 # (Except where explictly superceded by other copyright notices)
7 # This work is made available to you under the terms of Version 2 of
8 # the GNU General Public License. A copy of that license should have
9 # been provided with this software, but in any event can be snarfed
12 # This work is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
17 # Unless otherwise specified, all modifications, corrections or
18 # extensions to this work which alter its source code become the
19 # property of Best Practical Solutions, LLC when submitted for
20 # inclusion in the work.
24 # Autogenerated by DBIx::SearchBuilder factory (by <jesse@bestpractical.com>)
25 # WARNING: THIS FILE IS AUTOGENERATED. ALL CHANGES TO THIS FILE WILL BE LOST.
27 # !! DO NOT EDIT THIS FILE !!
51 @ISA= qw( RT::Record );
56 $self->Table('Groups');
57 $self->SUPER::_Init(@_);
64 =item Create PARAMHASH
66 Create takes a hash of values and creates a row in the database:
69 varchar(255) 'Description'.
72 varchar(64) 'Instance'.
90 Name => $args{'Name'},
91 Description => $args{'Description'},
92 Domain => $args{'Domain'},
93 Type => $args{'Type'},
94 Instance => $args{'Instance'},
103 Returns the current value of id.
104 (In the database, id is stored as int(11).)
112 Returns the current value of Name.
113 (In the database, Name is stored as varchar(200).)
121 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
122 (In the database, Name will be stored as a varchar(200).)
130 Returns the current value of Description.
131 (In the database, Description is stored as varchar(255).)
135 =item SetDescription VALUE
138 Set Description to VALUE.
139 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
140 (In the database, Description will be stored as a varchar(255).)
148 Returns the current value of Domain.
149 (In the database, Domain is stored as varchar(64).)
153 =item SetDomain VALUE
157 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
158 (In the database, Domain will be stored as a varchar(64).)
166 Returns the current value of Type.
167 (In the database, Type is stored as varchar(64).)
175 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
176 (In the database, Type will be stored as a varchar(64).)
184 Returns the current value of Instance.
185 (In the database, Instance is stored as varchar(64).)
189 =item SetInstance VALUE
192 Set Instance to VALUE.
193 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
194 (In the database, Instance will be stored as a varchar(64).)
201 sub _ClassAccessible {
205 {read => 1, type => 'int(11)', default => ''},
207 {read => 1, write => 1, type => 'varchar(200)', default => ''},
209 {read => 1, write => 1, type => 'varchar(255)', default => ''},
211 {read => 1, write => 1, type => 'varchar(64)', default => ''},
213 {read => 1, write => 1, type => 'varchar(64)', default => ''},
215 {read => 1, write => 1, type => 'varchar(64)', default => ''},
221 eval "require RT::Group_Overlay";
222 if ($@ && $@ !~ qr{^Can't locate RT/Group_Overlay.pm}) {
226 eval "require RT::Group_Vendor";
227 if ($@ && $@ !~ qr{^Can't locate RT/Group_Vendor.pm}) {
231 eval "require RT::Group_Local";
232 if ($@ && $@ !~ qr{^Can't locate RT/Group_Local.pm}) {
241 This class allows "overlay" methods to be placed
242 into the following files _Overlay is for a System overlay by the original author,
243 _Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.
245 These overlay files can contain new subs or subs to replace existing subs in this module.
247 If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line
249 no warnings qw(redefine);
251 so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.
253 RT::Group_Overlay, RT::Group_Vendor, RT::Group_Local