From 7e1265ede7c82999d2def9e001422c41aa48afc0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 24 Oct 2007 07:50:10 +0100 Subject: drop tagwall from trunk --- tw/output/HTML_output.php | 67 ----------------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 tw/output/HTML_output.php (limited to 'tw/output/HTML_output.php') diff --git a/tw/output/HTML_output.php b/tw/output/HTML_output.php deleted file mode 100644 index 3df2fef9d..000000000 --- a/tw/output/HTML_output.php +++ /dev/null @@ -1,67 +0,0 @@ -"; - $attr = null; - foreach ($attributes as $value) - { - if($value[1]) $attr .= ' '.$value[0].'="'.$value[1].'"'; - } - return "<$tag$attr>"; - } - - function single ($tag, &$attributes) - { - if($attributes == null) - return "<$tag>"; - $attr = null; - foreach ($attributes as $value) - { - if($value[1]) $attr .= ' '.$value[0].'="'.$value[1].'"'; - } - return "<$tag$attr>"; - } - - // template for end tags - function close ($tag) - { - return ""; - } - - function template_end() { return null; } - -} //END class HTML_output - -?> \ No newline at end of file -- cgit v1.2.3-54-g00ecf