Bug 15288: (followup) Better wording for OPAC error page
[koha.git] / C4 / Print.pm
blob22623c88222d55cf358369842937fb285a03341a
1 package C4::Print;
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use strict;
21 #use warnings; FIXME - Bug 2505
22 use C4::Context;
24 use vars qw($VERSION @ISA @EXPORT);
26 BEGIN {
27 # set the version for version checking
28 $VERSION = 3.07.00.049;
29 require Exporter;
30 @ISA = qw(Exporter);
31 @EXPORT = qw(&NetworkPrint);
34 =head1 NAME
36 C4::Print - Koha module dealing with printing
38 =head1 SYNOPSIS
40 use C4::Print;
42 =head1 DESCRIPTION
44 The functions in this module handle sending text to a printer.
46 =head1 FUNCTIONS
48 =head2 NetworkPrint
50 &NetworkPrint($text)
52 Queue some text for printing on the selected branch printer
54 =cut
56 sub NetworkPrint {
57 my ($text) = @_;
59 # FIXME - It'd be nifty if this could generate pretty PostScript.
61 my $queue = '';
63 # FIXME - If 'queue' is undefined or empty, then presumably it should
64 # mean "use the default queue", whatever the default is. Presumably
65 # the default depends on the physical location of the machine.
66 # FIXME - Perhaps "print to file" should be a supported option. Just
67 # set the queue to "file" (or " file", if real queues aren't allowed
68 # to have spaces in them). Or perhaps if $queue eq "" and
69 # $env->{file} ne "", then that should mean "print to $env->{file}".
71 my $fh;
72 if ( $queue eq "" || $queue eq 'nulllp' ) {
73 return;
74 #open( $fh, ">/tmp/kohaiss" );
76 else {
78 # FIXME - This assumes that 'lpr' exists, and works as expected.
79 # This is a reasonable assumption, but only because every other
80 # printing package has a wrapper script called 'lpr'. It'd still
81 # be better to be able to customize this.
82 open( $fh, "-|", "lpr -P $queue > /dev/null" )
83 or die "Couldn't write to queue:$queue!\n";
86 # print $queue;
87 #open (FILE,">/tmp/$file");
88 print $fh $text;
89 print $fh "\r\n" x 7 ;
90 close $fh;
92 #system("lpr /tmp/$file");
96 __END__
98 =head1 AUTHOR
100 Koha Development Team <http://koha-community.org/>
102 =head1 SEE ALSO
104 C4::Circulation::Circ2(3)
106 =cut