Revision d43904e8
Von Moritz Bunkus vor mehr als 16 Jahren hinzugefügt
SL/InstallationCheck.pm | ||
---|---|---|
{ "name" => "List::Util", "url" => "http://search.cpan.org/~gbarr/" },
|
||
{ "name" => "Template", "url" => "http://search.cpan.org/~abw/" },
|
||
{ "name" => "Digest::MD5", "url" => "http://search.cpan.org/~gaas/" },
|
||
{ "name" => "PDF::API2", "url" => "http://search.cpan.org/~areibens/" },
|
||
);
|
||
|
||
@optional_modules = (
|
||
{ "name" => "PDF::API2", "url" => "http://search.cpan.org/~areibens/" },
|
||
);
|
||
|
||
sub module_available {
|
SL/ReportGenerator.pm | ||
---|---|---|
use List::Util qw(max);
|
||
use Text::CSV_XS;
|
||
use Text::Iconv;
|
||
use PDF::API2;
|
||
use PDF::Table;
|
||
|
||
use SL::Form;
|
||
|
||
... | ... | |
|
||
my $allow_pdf_export = $opts->{allow_pdf_export};
|
||
|
||
eval { require PDF::API2; require PDF::Table; };
|
||
$allow_pdf_export |= 1 if (! $@);
|
||
|
||
my $variables = {
|
||
'TITLE' => $opts->{title},
|
||
'TOP_INFO_TEXT' => $self->html_format($opts->{top_info_text}),
|
||
... | ... | |
|
||
=item allow_pdf_export
|
||
|
||
Used to determine if a button for PDF export should be displayed. Default is yes. The PDF button is hidden if neither the Perl module PDF::API2 nor the external applications html2ps and Ghostscript are available regardless of this parameter's value.
|
||
Used to determine if a button for PDF export should be displayed. Default is yes.
|
||
|
||
=item allow_csv_export
|
||
|
Auch abrufbar als: Unified diff
Das Perl-Modul PDF::API2 ist nun feste Voraussetzung.