blob: fa7cf83b0faeeb323b3fb37163c498823a37cfd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Extension::MyDashboard::Util;
use strict;
use Bugzilla::CGI;
use Bugzilla::Search;
use Bugzilla::Status;
use base qw(Exporter);
@Bugzilla::Extension::MyDashboard::Util::EXPORT = qw(
open_states
closed_states
quoted_open_states
quoted_closed_states
);
our $_open_states;
sub open_states {
$_open_states ||= Bugzilla::Status->match({ is_open => 1, isactive => 1 });
return wantarray ? @$_open_states : $_open_states;
}
our $_quoted_open_states;
sub quoted_open_states {
my $dbh = Bugzilla->dbh;
$_quoted_open_states ||= [ map { $dbh->quote($_->name) } open_states() ];
return wantarray ? @$_quoted_open_states : $_quoted_open_states;
}
our $_closed_states;
sub closed_states {
$_closed_states ||= Bugzilla::Status->match({ is_open => 0, isactive => 1 });
return wantarray ? @$_closed_states : $_closed_states;
}
our $_quoted_closed_states;
sub quoted_closed_states {
my $dbh = Bugzilla->dbh;
$_quoted_closed_states ||= [ map { $dbh->quote($_->name) } closed_states() ];
return wantarray ? @$_quoted_closed_states : $_quoted_closed_states;
}
1;
|