~ubuntu-branches/ubuntu/natty/otrs2/natty-updates

« back to all changes in this revision

Viewing changes to Kernel/System/Priority.pm

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2007-04-14 17:58:55 UTC
  • mto: (20.1.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: package-import@ubuntu.com-20070414175855-9ne0w01yu1q44ch0
Tags: upstream-2.1.7
ImportĀ upstreamĀ versionĀ 2.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# --
2
2
# Kernel/System/Priority.pm - All priority related function should be here eventually
3
 
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
 
3
# Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
4
4
# --
5
 
# $Id: Priority.pm,v 1.2 2005/11/11 10:38:39 martin Exp $
 
5
# $Id: Priority.pm,v 1.4 2006/08/29 17:30:36 martin Exp $
6
6
# --
7
7
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
8
8
# the enclosed file COPYING for license information (GPL). If you
14
14
use strict;
15
15
 
16
16
use vars qw(@ISA $VERSION);
17
 
$VERSION = '$Revision: 1.2 $';
 
17
$VERSION = '$Revision: 1.4 $';
18
18
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
19
19
 
20
20
=head1 NAME
36
36
create a object
37
37
 
38
38
    use Kernel::Config;
39
 
    use Kernel::System::Time;
40
39
    use Kernel::System::Log;
41
40
    use Kernel::System::DB;
42
41
    use Kernel::System::Priority;
43
42
 
44
43
    my $ConfigObject = Kernel::Config->new();
45
 
    my $TimeObject    = Kernel::System::Time->new(
46
 
        ConfigObject => $ConfigObject,
47
 
    );
48
44
    my $LogObject    = Kernel::System::Log->new(
49
45
        ConfigObject => $ConfigObject,
50
46
    );
56
52
        ConfigObject => $ConfigObject,
57
53
        LogObject => $LogObject,
58
54
        DBObject => $DBObject,
59
 
        TimeObject => $TimeObject,
60
55
    );
61
56
 
62
57
=cut
126
121
 
127
122
=head1 VERSION
128
123
 
129
 
$Revision: 1.2 $ $Date: 2005/11/11 10:38:39 $
 
124
$Revision: 1.4 $ $Date: 2006/08/29 17:30:36 $
130
125
 
131
126
=cut