diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-14 17:26:23 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-14 17:26:23 +0000 |
commit | f8b758932442cf468167e7b317d67162b6fac561 (patch) | |
tree | 8c0be40a0fe6467aaf5d0caf5e4e1e08fbdf9805 /lib/htmloutputter.php | |
parent | efe9d28efa3ce03799e0e0dcd5cca52e3862bfe9 (diff) |
showBody() -- revisit to add @id and @class to <body>
showContentBlock()
showContent()
added endHTML() to class HTMLOutputter
Diffstat (limited to 'lib/htmloutputter.php')
-rw-r--r-- | lib/htmloutputter.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 095f4d478..43e4a59a9 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -122,6 +122,19 @@ class HTMLOutputter extends XMLOutputter 'lang' => $language)); } + + /** + * Ends an HTML document + * + * @return void + */ + function endHTML() + { + $this->elementEnd('html'); + $this->endXML(); + } + + /** * Output an HTML text input element * |