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

OPTIONS

You may configure RTX::Tags by setting variables in local/etc/Tags_SiteConfig.pm, or alternatively local/plugins/RTx-Tags/etc/Tags_SiteConfig.pm.

Recognized variables are:

$tagsTypes

Accepts an arrayref of object types to limit the count to. By default RTx::Tags will count tags for any object in RT.

Of course, the links for each tag will only display corresponding tickets.

$tagsLinkType

If this is set to undef, tags are not linked to ticket search results. This might be useful if your cloud features (many instances of) types other than tickets.

$tagsStatus

Accepts an arrayref of statuses to limit the count to, with the side-effect of forcibly limiting $tagsTypes to RT::Ticket.

If you want to count tickets regardless of status you could use $tagsTypes=>'RT::Ticket', but $tagsStatus=>undef is probably clearer.

A particularly handy incantantion is:

  #Only display 'Active' Tickets
  Set($tagsStatus=>\@RT::ActiveStatus);
$tagsRaw

Enabled by default, a false setting will prevent the display of the "Global" cloud on Search/TagCloud.html. This cloud which provides a view of the uncustomized cloud i.e; uses all of the defaults shown here.

$tagsComplete

Minimum number of characters required before RTx::Tags returns possible completions. The default is 3.