NAME

BZ::Client::Bugzilla

VERSION

version 1.062_1

SYNOPSIS

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);

NAME

BZ::Client::Bugzilla - Provides information about the Bugzilla server.

VERSION

version 1.062_1

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

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>

AUTHOR

Dean Hamstead <dean@bytefoundry.com.au>

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.