The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

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

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

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>