import of rt 3.0.4
[freeside.git] / rt / lib / RT / ScripConditions_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::ScripConditions - Collection of Action objects
27
28 =head1 SYNOPSIS
29
30   use RT::ScripConditions;
31
32
33 =head1 DESCRIPTION
34
35
36
37 =begin testing
38
39 ok (require RT::ScripConditions);
40
41 =end testing
42
43 =head1 METHODS
44
45 =cut
46
47 use strict;
48 no warnings qw(redefine);
49
50 # {{{ sub _Init
51 sub _Init { 
52   my $self = shift;
53   $self->{'table'} = "ScripConditions";
54   $self->{'primary_key'} = "id";
55   return ( $self->SUPER::_Init(@_));
56 }
57 # }}}
58
59 # {{{ sub LimitToType 
60 sub LimitToType  {
61   my $self = shift;
62   my $type = shift;
63   $self->Limit (ENTRYAGGREGATOR => 'OR',
64                 FIELD => 'Type',
65                 VALUE => "$type")
66       if defined $type;
67   $self->Limit (ENTRYAGGREGATOR => 'OR',
68                 FIELD => 'Type',
69                 VALUE => "Correspond")
70       if $type eq "Create";
71   $self->Limit (ENTRYAGGREGATOR => 'OR',
72                 FIELD => 'Type',
73                 VALUE => 'any');
74   
75 }
76 # }}}
77
78 # {{{ sub NewItem 
79 sub NewItem  {
80   my $self = shift;
81   return(RT::ScripCondition->new($self->CurrentUser));
82 }
83 # }}}
84
85
86 1;
87