5.7.212. Bugzilla::Extension::RuleEngine::FlagGroup

5.7.212.1. NAME

Bugzilla::Extension::RuleEngine::FlagGroup - Bugzilla Rules Engine Flag Group class.

5.7.212.2. SYNOPSIS

use Bugzilla::Extension::RuleEngine::FlagGroup;

my $flag_group = new Bugzilla::Extension::RuleEngine::FlagGroup(1);
my $flag_group = new Bugzilla::Extension::RuleEngine::FlagGroup({name => 'Acme'});

my $id                = $flag_group->id;
my $name              = $flag_group->name;
my $description       = $flag_group->description;
my $current_detail_id = $flag_group->current_detail_id;
my $sortkey           = $flag_group->sortkey;

5.7.212.3. DESCRIPTION

Bugzilla::Extension::RuleEngine::FlagGroup represents a flag_group object. It is an implementation of Bugzilla::Object, and thus provides all methods that Bugzilla::Object provides.

The methods that are specific to Bugzilla::Extension::RuleEngine::FlagGroup are listed below.

A Flag group is either a regular expression or a list of flag types that is part of the Bugzilla Rules Engine. A flag group is versioned with a specific version called a flag group detail.

5.7.212.4. METHODS

  • current
  • Description
Returns the current version of the flag group.
  • Params
none.
  • Returns
  • all_details
  • Description
Returns all versions of the flag group.
  • Params
none.
  • Returns

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