Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
// $Header: /cvsroot/html2ps/xhtml.selects.inc.php,v 1.3 2005/04/27 16:27:46 Konstantin Exp $
3
 
4
function process_option(&$sample_html, $offset) {
5
  return autoclose_tag($sample_html, $offset, "(option|/select|/option)",
6
                       array(),
7
                       "/option");
8
};
9
 
10
function process_select(&$sample_html, $offset) {
11
  return autoclose_tag($sample_html, $offset, "(option|/select)",
12
                       array("option" => "process_option"),
13
                       "/select");
14
};
15
 
16
function process_selects(&$sample_html, $offset) {
17
  return autoclose_tag($sample_html, $offset, "(select)",
18
                       array("select" => "process_select"),
19
                       "");
20
};
21
 
22
?>