import Net::Whois::Raw into install/5.005 directory *sigh*
[freeside.git] / rt / lib / RT / ScripActions_Overlay.pm
1 # BEGIN LICENSE BLOCK
2
3 # Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
4
5 # (Except where explictly superceded by other copyright notices)
6
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
10 # from www.gnu.org.
11
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.
16
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.
21
22
23 # END LICENSE BLOCK
24 =head1 NAME
25
26   RT::ScripActions - Collection of Action objects
27
28 =head1 SYNOPSIS
29
30   use RT::ScripActions;
31
32
33 =head1 DESCRIPTION
34
35
36 =begin testing
37
38 ok (require RT::ScripActions);
39
40 =end testing
41
42 =head1 METHODS
43
44 =cut
45
46 use strict;
47 no warnings qw(redefine);
48
49 # {{{ sub _Init
50 sub _Init { 
51   my $self = shift;
52   $self->{'table'} = "ScripActions";
53   $self->{'primary_key'} = "id";
54   return ( $self->SUPER::_Init(@_));
55 }
56 # }}}
57
58 # {{{ sub LimitToType 
59 sub LimitToType  {
60   my $self = shift;
61   my $type = shift;
62   $self->Limit (ENTRYAGGREGATOR => 'OR',
63                 FIELD => 'Type',
64                 VALUE => "$type")
65       if defined $type;
66   $self->Limit (ENTRYAGGREGATOR => 'OR',
67                 FIELD => 'Type',
68                 VALUE => "Correspond")
69       if $type eq "Create";
70   $self->Limit (ENTRYAGGREGATOR => 'OR',
71                 FIELD => 'Type',
72                 VALUE => 'any');
73   
74 }
75 # }}}
76
77 # {{{ sub NewItem 
78 sub NewItem  {
79   my $self = shift;
80   return(RT::ScripAction->new($self->CurrentUser));
81
82 }
83 # }}}
84
85
86 1;
87