5.7.60. Bugzilla::Report

5.7.60.1. NAME

Bugzilla::Report - Bugzilla report class.

5.7.60.2. SYNOPSIS

use Bugzilla::Report;

my $report = new Bugzilla::Report(1);

my $report = Bugzilla::Report->check({id => $id});

my $name = $report->name;
my $query = $report->query;

my $report = Bugzilla::Report->create({ name => $name, query => $query });

$report->set_name($new_name);
$report->set_query($new_query);
$report->update();

$report->remove_from_db;

5.7.60.3. DESCRIPTION

Report.pm represents a Report object. It is an implementation of Bugzilla::Object, and thus provides all methods that Bugzilla::Object provides.

5.7.60.4. Methods in need of POD

  • create
  • query
  • set_query
  • set_name

This documentation undoubtedly has bugs; if you find some, please file them here.