The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package RT::Extension::TimeWorkedReport;

use 5.006;
use strict;
use warnings;

=head1 NAME

    RT::Extension::TimeWorkedReport - summary of timespent on ticket for RT4

=cut

our $VERSION = '1.02';

1;

=head1 SUMMARY
    
This RT extension enables reports on time worked on Tickets by User.
   
    https://rt.example.com/Tools/Reports/TimeWorkedReport.html 
    
This plugin is configured for RT4.
For RT3.x see L<http://requesttracker.wikia.com/wiki/TimeWorkedReport>.


=head1 DESCRIPTION

This report allows the user to specify a datetime range and one or more queues,
and displays the time worked for each ticket in the selected queue(s) which has
> 0 minutes time worked in the datetime range. It will show non-superusers
their own report and superusers a report of all users.

It also will allow superusers to organize the report by ticket, with a
breakdown of the contributions to that ticket per-person, rather than the
default by-person organization.


=head1 INSTALL

    perl Makefile.PL
    make
    make install

    # Enable this plugin in your RT_SiteConfig.pm:
    Set(@Plugins, (qw/RT::Extension::TimeWorkedReport/) );

    After restarting RT the TimeWorkedReport will be available under the Tools menu.


=head1 SUPPORT

Please report any bugs at either:
L<http://search.cpan.org/dist/RT-Extension-TimeWorkedReport/>
L<https://github.com/coffeemonster/rt-extension-timeworkedreport>


=head1 LICENSE AND COPYRIGHT

Copyright 2000-2012 Fran Fabrizio <fabrizio-at-uab-dot-edu>
CPAN Port for RT4 maintained by Alister West <alister@alisterwest.com>

This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.


=head1 CHANGES

This plugin is a cpan-port of the original wiki extension at
L<http://requesttracker.wikia.com/wiki/TimeWorkedReport>

    1.01  2000- 2012 - Created by Fran Fabrizio 
    1.02  2012-12-12 - cpan-dist port by Alister West

=cut