1<?php
2// $Header: /cvsroot/html2ps/output.pdflib.old.class.php,v 1.2 2006/11/11 13:43:53 Konstantin Exp $
3
4require_once(HTML2PS_DIR.'output.pdflib.class.php');
5
6class OutputDriverPdflibOld extends OutputDriverPdflib {
7  function field_multiline_text($x, $y, $w, $h, $value, $name) {
8  }
9
10  function field_text($x, $y, $w, $h, $value, $name) {
11  }
12
13  function field_password($x, $y, $w, $h, $value, $name) {
14  }
15
16  function field_pushbutton($x, $y, $w, $h) {
17  }
18
19  function field_pushbuttonimage($x, $y, $w, $h, $field_name, $value, $actionURL) {
20  }
21
22  function field_pushbuttonreset($x, $y, $w, $h) {
23  }
24
25  function field_pushbuttonsubmit($x, $y, $w, $h, $field_name, $value, $actionURL) {
26  }
27
28  function field_checkbox($x, $y, $w, $h, $name, $value, $checked) {
29  }
30
31  function field_radio($x, $y, $w, $h, $groupname, $value, $checked) {
32  }
33
34  function field_select($x, $y, $w, $h, $name, $value, $options) {
35  }
36
37  function new_form($name) {
38  }
39}
40?>