import rt 3.8.7
[freeside.git] / rt / lib / RT / ObjectCustomFieldValue.pm
1 # BEGIN BPS TAGGED BLOCK {{{
2
3 # COPYRIGHT:
4
5 # This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC
6 #                                          <jesse@bestpractical.com>
7
8 # (Except where explicitly superseded by other copyright notices)
9
10
11 # LICENSE:
12
13 # This work is made available to you under the terms of Version 2 of
14 # the GNU General Public License. A copy of that license should have
15 # been provided with this software, but in any event can be snarfed
16 # from www.gnu.org.
17
18 # This work is distributed in the hope that it will be useful, but
19 # WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 # General Public License for more details.
22
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 # 02110-1301 or visit their web page on the internet at
27 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28
29
30 # CONTRIBUTION SUBMISSION POLICY:
31
32 # (The following paragraph is not intended to limit the rights granted
33 # to you to modify and distribute this software under the terms of
34 # the GNU General Public License and is only of importance to you if
35 # you choose to contribute your changes and enhancements to the
36 # community by submitting them to Best Practical Solutions, LLC.)
37
38 # By intentionally submitting any modifications, corrections or
39 # derivatives to this work, or any other work intended for use with
40 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 # you are the copyright holder for those contributions and you grant
42 # Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 # royalty-free, perpetual, license to use, copy, create derivative
44 # works based on those contributions, and sublicense and distribute
45 # those contributions and any derivatives thereof.
46
47 # END BPS TAGGED BLOCK }}}
48
49 # Autogenerated by DBIx::SearchBuilder factory (by <jesse@bestpractical.com>)
50 # WARNING: THIS FILE IS AUTOGENERATED. ALL CHANGES TO THIS FILE WILL BE LOST.  
51
52 # !! DO NOT EDIT THIS FILE !!
53 #
54
55 use strict;
56
57
58 =head1 NAME
59
60 RT::ObjectCustomFieldValue
61
62
63 =head1 SYNOPSIS
64
65 =head1 DESCRIPTION
66
67 =head1 METHODS
68
69 =cut
70
71 package RT::ObjectCustomFieldValue;
72 use RT::Record; 
73 use RT::CustomField;
74
75
76 use vars qw( @ISA );
77 @ISA= qw( RT::Record );
78
79 sub _Init {
80   my $self = shift; 
81
82   $self->Table('ObjectCustomFieldValues');
83   $self->SUPER::_Init(@_);
84 }
85
86
87
88
89
90 =head2 Create PARAMHASH
91
92 Create takes a hash of values and creates a row in the database:
93
94   int(11) 'CustomField'.
95   varchar(255) 'ObjectType'.
96   int(11) 'ObjectId'.
97   int(11) 'SortOrder'.
98   varchar(255) 'Content'.
99   longtext 'LargeContent'.
100   varchar(80) 'ContentType'.
101   varchar(80) 'ContentEncoding'.
102   smallint(6) 'Disabled'.
103
104 =cut
105
106
107
108
109 sub Create {
110     my $self = shift;
111     my %args = ( 
112                 CustomField => '0',
113                 ObjectType => '',
114                 ObjectId => '0',
115                 SortOrder => '0',
116                 Content => '',
117                 LargeContent => '',
118                 ContentType => '',
119                 ContentEncoding => '',
120                 Disabled => '0',
121
122                   @_);
123     $self->SUPER::Create(
124                          CustomField => $args{'CustomField'},
125                          ObjectType => $args{'ObjectType'},
126                          ObjectId => $args{'ObjectId'},
127                          SortOrder => $args{'SortOrder'},
128                          Content => $args{'Content'},
129                          LargeContent => $args{'LargeContent'},
130                          ContentType => $args{'ContentType'},
131                          ContentEncoding => $args{'ContentEncoding'},
132                          Disabled => $args{'Disabled'},
133 );
134
135 }
136
137
138
139 =head2 id
140
141 Returns the current value of id. 
142 (In the database, id is stored as int(11).)
143
144
145 =cut
146
147
148 =head2 CustomField
149
150 Returns the current value of CustomField. 
151 (In the database, CustomField is stored as int(11).)
152
153
154
155 =head2 SetCustomField VALUE
156
157
158 Set CustomField to VALUE. 
159 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
160 (In the database, CustomField will be stored as a int(11).)
161
162
163 =cut
164
165
166 =head2 CustomFieldObj
167
168 Returns the CustomField Object which has the id returned by CustomField
169
170
171 =cut
172
173 sub CustomFieldObj {
174         my $self = shift;
175         my $CustomField =  RT::CustomField->new($self->CurrentUser);
176         $CustomField->Load($self->__Value('CustomField'));
177         return($CustomField);
178 }
179
180 =head2 ObjectType
181
182 Returns the current value of ObjectType. 
183 (In the database, ObjectType is stored as varchar(255).)
184
185
186
187 =head2 SetObjectType VALUE
188
189
190 Set ObjectType to VALUE. 
191 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
192 (In the database, ObjectType will be stored as a varchar(255).)
193
194
195 =cut
196
197
198 =head2 ObjectId
199
200 Returns the current value of ObjectId. 
201 (In the database, ObjectId is stored as int(11).)
202
203
204
205 =head2 SetObjectId VALUE
206
207
208 Set ObjectId to VALUE. 
209 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
210 (In the database, ObjectId will be stored as a int(11).)
211
212
213 =cut
214
215
216 =head2 SortOrder
217
218 Returns the current value of SortOrder. 
219 (In the database, SortOrder is stored as int(11).)
220
221
222
223 =head2 SetSortOrder VALUE
224
225
226 Set SortOrder to VALUE. 
227 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
228 (In the database, SortOrder will be stored as a int(11).)
229
230
231 =cut
232
233
234 =head2 Content
235
236 Returns the current value of Content. 
237 (In the database, Content is stored as varchar(255).)
238
239
240
241 =head2 SetContent VALUE
242
243
244 Set Content to VALUE. 
245 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
246 (In the database, Content will be stored as a varchar(255).)
247
248
249 =cut
250
251
252 =head2 LargeContent
253
254 Returns the current value of LargeContent. 
255 (In the database, LargeContent is stored as longtext.)
256
257
258
259 =head2 SetLargeContent VALUE
260
261
262 Set LargeContent to VALUE. 
263 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
264 (In the database, LargeContent will be stored as a longtext.)
265
266
267 =cut
268
269
270 =head2 ContentType
271
272 Returns the current value of ContentType. 
273 (In the database, ContentType is stored as varchar(80).)
274
275
276
277 =head2 SetContentType VALUE
278
279
280 Set ContentType to VALUE. 
281 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
282 (In the database, ContentType will be stored as a varchar(80).)
283
284
285 =cut
286
287
288 =head2 ContentEncoding
289
290 Returns the current value of ContentEncoding. 
291 (In the database, ContentEncoding is stored as varchar(80).)
292
293
294
295 =head2 SetContentEncoding VALUE
296
297
298 Set ContentEncoding to VALUE. 
299 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
300 (In the database, ContentEncoding will be stored as a varchar(80).)
301
302
303 =cut
304
305
306 =head2 Creator
307
308 Returns the current value of Creator. 
309 (In the database, Creator is stored as int(11).)
310
311
312 =cut
313
314
315 =head2 Created
316
317 Returns the current value of Created. 
318 (In the database, Created is stored as datetime.)
319
320
321 =cut
322
323
324 =head2 LastUpdatedBy
325
326 Returns the current value of LastUpdatedBy. 
327 (In the database, LastUpdatedBy is stored as int(11).)
328
329
330 =cut
331
332
333 =head2 LastUpdated
334
335 Returns the current value of LastUpdated. 
336 (In the database, LastUpdated is stored as datetime.)
337
338
339 =cut
340
341
342 =head2 Disabled
343
344 Returns the current value of Disabled. 
345 (In the database, Disabled is stored as smallint(6).)
346
347
348
349 =head2 SetDisabled VALUE
350
351
352 Set Disabled to VALUE. 
353 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
354 (In the database, Disabled will be stored as a smallint(6).)
355
356
357 =cut
358
359
360
361 sub _CoreAccessible {
362     {
363      
364         id =>
365                 {read => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => ''},
366         CustomField => 
367                 {read => 1, write => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
368         ObjectType => 
369                 {read => 1, write => 1, sql_type => 12, length => 255,  is_blob => 0,  is_numeric => 0,  type => 'varchar(255)', default => ''},
370         ObjectId => 
371                 {read => 1, write => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
372         SortOrder => 
373                 {read => 1, write => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
374         Content => 
375                 {read => 1, write => 1, sql_type => 12, length => 255,  is_blob => 0,  is_numeric => 0,  type => 'varchar(255)', default => ''},
376         LargeContent => 
377                 {read => 1, write => 1, sql_type => -4, length => 0,  is_blob => 1,  is_numeric => 0,  type => 'longtext', default => ''},
378         ContentType => 
379                 {read => 1, write => 1, sql_type => 12, length => 80,  is_blob => 0,  is_numeric => 0,  type => 'varchar(80)', default => ''},
380         ContentEncoding => 
381                 {read => 1, write => 1, sql_type => 12, length => 80,  is_blob => 0,  is_numeric => 0,  type => 'varchar(80)', default => ''},
382         Creator => 
383                 {read => 1, auto => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
384         Created => 
385                 {read => 1, auto => 1, sql_type => 11, length => 0,  is_blob => 0,  is_numeric => 0,  type => 'datetime', default => ''},
386         LastUpdatedBy => 
387                 {read => 1, auto => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
388         LastUpdated => 
389                 {read => 1, auto => 1, sql_type => 11, length => 0,  is_blob => 0,  is_numeric => 0,  type => 'datetime', default => ''},
390         Disabled => 
391                 {read => 1, write => 1, sql_type => 5, length => 6,  is_blob => 0,  is_numeric => 1,  type => 'smallint(6)', default => '0'},
392
393  }
394 };
395
396
397         eval "require RT::ObjectCustomFieldValue_Overlay";
398         if ($@ && $@ !~ qr{^Can't locate RT/ObjectCustomFieldValue_Overlay.pm}) {
399             die $@;
400         };
401
402         eval "require RT::ObjectCustomFieldValue_Vendor";
403         if ($@ && $@ !~ qr{^Can't locate RT/ObjectCustomFieldValue_Vendor.pm}) {
404             die $@;
405         };
406
407         eval "require RT::ObjectCustomFieldValue_Local";
408         if ($@ && $@ !~ qr{^Can't locate RT/ObjectCustomFieldValue_Local.pm}) {
409             die $@;
410         };
411
412
413
414
415 =head1 SEE ALSO
416
417 This class allows "overlay" methods to be placed
418 into the following files _Overlay is for a System overlay by the original author,
419 _Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  
420
421 These overlay files can contain new subs or subs to replace existing subs in this module.
422
423 Each of these files should begin with the line 
424
425    no warnings qw(redefine);
426
427 so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.
428
429 RT::ObjectCustomFieldValue_Overlay, RT::ObjectCustomFieldValue_Vendor, RT::ObjectCustomFieldValue_Local
430
431 =cut
432
433
434 1;