1BZ::Client::Bugzilla(3)User Contributed Perl DocumentatioBnZ::Client::Bugzilla(3)
2
3
4
6 BZ::Client::Bugzilla - Provides information about the Bugzilla server.
7
8 This class provides methods for accessing information about the
9 Bugzilla servers installation.
10
12 my $client = BZ::Client->new("url" => $url,
13 "user" => $user,
14 "password" => $password);
15 my $extensions = BZ::Client::Bugzilla->extensions($client);
16 my $time = BZ::Client::Bugzilla->time($client);
17 my $version = BZ::Client::Bugzilla->version($client);
18
20 This section lists the class methods, which are available in this
21 module.
22
23 extensions
24 my $extensions = BZ::Client::Bugzilla->extensions($client);
25
26 Returns a hash ref with information about the Bugzilla servers
27 extensions.
28
29 time
30 my $time = BZ::Client::Bugzilla->time($client);
31
32 Returns a hash ref with information about the Bugzilla servers local
33 time.
34
35 timezone
36 my $timezone = BZ::Client::Bugzilla->timezone($client);
37
38 Returns the Bugzilla servers timezone as a numeric value. This method
39 is deprecated: Use "time" instead.
40
41 version
42 my $version = BZ::Client::Bugzilla->version($client);
43
44 Returns the Bugzilla servers version.
45
47 L<BZ::Client>, L<BZ::Client::API>
48
49
50
51perl v5.12.0 2009-06-23 BZ::Client::Bugzilla(3)