summaryrefslogtreecommitdiff
path: root/FS/FS/Report.pm
blob: 181fea2f6c65d36ade6b493a6d3a51c7d3323836 (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
package FS::Report;

use strict;

=head1 NAME

FS::Report - Report data objects

=head1 SYNOPSIS

  #see the more speicific report objects, currently only FS::Report::Table

=head1 DESCRIPTION

See the more specific report objects, currently only FS::Report::Table

=head1 METHODS

=over 4

=item new [ OPTION => VALUE ... ]

Constructor.  Takes a list of options and their values.

=cut

sub new {
  my $proto = shift;
  my $class = ref($proto) || $proto;
  my $self = @_ ? ( ref($_[0]) ? shift : { @_ } ) : {};
  bless( $self, $class );
}

=back

=head1 BUGS

Documentation.

=head1 SEE ALSO

L<FS::Report::Table>, reports in the web interface.

=cut

1;