NAME

BZ::Client::Bugzilla - Provides access to the Bugzilla::Webservices::Bugzilla API

VERSION

version 1.064

SYNOPSIS

This class provides methods for accessing information about the Bugzilla servers installation.

my $client = BZ::Client->new( url      => $url,
                              user     => $user,
                              password => $password );

my $extensions = BZ::Client::Bugzilla->extensions( $client );
my $time = BZ::Client::Bugzilla->time( $client );
my $version = BZ::Client::Bugzilla->version( $client );

CLASS METHODS

This section lists the class methods, which are available in this module.

extensions

my $extensions = BZ::Client::Bugzilla->extensions( $client );

Returns a hash ref with information about the Bugzilla servers extensions.

time

my $time = BZ::Client::Bugzilla->time( $client );

Returns a hash ref with information about the Bugzilla servers local time.

timezone

my $timezone = BZ::Client::Bugzilla->timezone( $client );

Returns the Bugzilla servers timezone as a numeric value. This method is deprecated: Use "time" instead.

version

my $version = BZ::Client::Bugzilla->version( $client );

Returns the Bugzilla servers version.

SEE ALSO

L<BZ::Client>, L<BZ::Client::API>

AUTHORS

  • Dean Hamstead <dean@bytefoundry.com.au>

  • Jochen Wiedmann <jochen.wiedmann@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Dean Hamstad.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.