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 !!
35 RT::ScripActions -- Class Description
48 package RT::ScripActions;
50 use RT::SearchBuilder;
54 @ISA= qw(RT::SearchBuilder);
59 $self->{'table'} = 'ScripActions';
60 $self->{'primary_key'} = 'id';
63 return ( $self->SUPER::_Init(@_) );
69 Returns an empty new RT::ScripAction item
75 return(RT::ScripAction->new($self->CurrentUser));
78 eval "require RT::ScripActions_Overlay";
79 if ($@ && $@ !~ qr{^Can't locate RT/ScripActions_Overlay.pm}) {
83 eval "require RT::ScripActions_Vendor";
84 if ($@ && $@ !~ qr{^Can't locate RT/ScripActions_Vendor.pm}) {
88 eval "require RT::ScripActions_Local";
89 if ($@ && $@ !~ qr{^Can't locate RT/ScripActions_Local.pm}) {
98 This class allows "overlay" methods to be placed
99 into the following files _Overlay is for a System overlay by the original author,
100 _Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.
102 These overlay files can contain new subs or subs to replace existing subs in this module.
104 If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line
106 no warnings qw(redefine);
108 so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.
110 RT::ScripActions_Overlay, RT::ScripActions_Vendor, RT::ScripActions_Local