~ubuntu-branches/debian/sid/bugzilla/sid

« back to all changes in this revision

Viewing changes to Bugzilla/Template/Plugin/User.pm

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2008-06-27 22:34:34 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080627223434-0ib57vstn43bb4a3
Tags: 3.0.4.1-1
* Update of French, Russian and German translations. (closes: #488251)
* Added Bulgarian and Belarusian translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- Mode: perl; indent-tabs-mode: nil -*-
2
 
#
3
 
# The contents of this file are subject to the Mozilla Public
4
 
# License Version 1.1 (the "License"); you may not use this file
5
 
# except in compliance with the License. You may obtain a copy of
6
 
# the License at http://www.mozilla.org/MPL/
7
 
#
8
 
# Software distributed under the License is distributed on an "AS
9
 
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10
 
# implied. See the License for the specific language governing
11
 
# rights and limitations under the License.
12
 
#
13
 
# The Original Code is the Bugzilla Bug Tracking System.
14
 
#
15
 
# The Initial Developer of the Original Code is Netscape Communications
16
 
# Corporation. Portions created by Netscape are
17
 
# Copyright (C) 1998 Netscape Communications Corporation. All
18
 
# Rights Reserved.
19
 
#
20
 
# Contributor(s): Bradley Baetz <bbaetz@student.usyd.edu.au>
21
 
#                 Joel Peshkin <bugreport@peshkin.net>
22
 
#
23
 
 
24
 
package Bugzilla::Template::Plugin::User;
25
 
 
26
 
use strict;
27
 
 
28
 
use base qw(Template::Plugin);
29
 
 
30
 
use Bugzilla::User;
31
 
 
32
 
sub new {
33
 
    my ($class, $context) = @_;
34
 
 
35
 
    return bless {}, $class;
36
 
}
37
 
 
38
 
sub AUTOLOAD {
39
 
    my $class = shift;
40
 
    our $AUTOLOAD;
41
 
 
42
 
    $AUTOLOAD =~ s/^.*:://;
43
 
 
44
 
    return if $AUTOLOAD eq 'DESTROY';
45
 
 
46
 
    return Bugzilla::User->$AUTOLOAD(@_);
47
 
}
48
 
 
49
 
1;
50
 
 
51
 
__END__
52
 
 
53
 
=head1 NAME
54
 
 
55
 
Bugzilla::Template::Plugin::User
56
 
 
57
 
=head1 DESCRIPTION
58
 
 
59
 
Template Toolkit plugin to allow access to the C<User>
60
 
object.
61
 
 
62
 
=head1 SEE ALSO
63
 
 
64
 
L<Bugzilla::User>, L<Template::Plugin>
65