-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprint_relance.php
More file actions
executable file
·32 lines (29 loc) · 1.47 KB
/
print_relance.php
File metadata and controls
executable file
·32 lines (29 loc) · 1.47 KB
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
<?php
// +-------------------------------------------------+
// � 2002-2004 PMB Services / www.sigb.net pmb@sigb.net et contributeurs (voir www.sigb.net)
// +-------------------------------------------------+
// $Id: print_relance.php,v 1.1 2011-06-27 15:26:58 ngantier Exp $
//Ajout aux maniers
$base_path = ".";
$base_auth = "CATALOGAGE_AUTH";
$base_title = "\$msg[abts_gestion_retard_print_relance]";
require_once ("$base_path/includes/init.inc.php");
$rel_id_list=explode(",",$sel_relance);
$nb=count($rel_id_list)-1;
if ($action=="print_prepare") {
print "<script type='text/javascript' src='./javascript/tablist.js'></script>";
print "<h3>".$msg["abts_gestion_retard_print_relance"]."</h3>\n";
print "<form name='print_options' action='./catalog/serials/abts_retard/get_relance.php' method='post'>";
print "
<b>".sprintf($msg["abts_gestion_retard_print_info"],$nb)."</b><br /> <hr />
<input type='hidden' name='sel_relance' value='$sel_relance' />
".$msg["abts_gestion_retard_print_type"]."<br />
<input type='radio' readonly name='print_mode' value='1'/> ".$msg["abts_gestion_retard_print_type_pdf"]."<br />
<input type='radio' name='print_mode' value='0' checked/> ".$msg["abts_gestion_retard_print_type_rtf"]."<br />
<hr />
<input type='submit' value='".$msg["abts_gestion_retard_print_relance"]."' class='bouton'/>
<input type='button' value='".$msg["print_cancel"]."' class='bouton' onClick='self.close();'/>
</form>";
}
print $footer;
?>