$background =
[line 185]
Stores the value of the background-attribute of the body-tag. For using a background image.
$behaviour = "Transitional"
[line 213]
Valid values for example are "Final", "Strict", "Transitional" or "Frameset". The standard value is "Transitional".
If "Frameset" is set as value, the body-tag will not be add!
$behindbody =
[line 99]
The space between </body> and </html>.
Tags:
$bgcolor =
[line 126]
Stores the value of the bgcolor-attribute of the body-tag to set the backgroundcolor of the Site.
$body =
[line 92]
The content of this HTML-document.
Tags:
$contenttype = "HTML"
[line 205]
Valid values for example are "HTML", "XHTML", "SVG" or "MathML". The standard value is "HTML".
$docforms =
[line 110]
$docitems =
[line 108]
$doctables =
[line 109]
$doctype = "html"
[line 198]
Valid values for example are "html", "math" or "svg". The standard value is "html".
$head =
[line 85]
Tags:
$include_doctype = true
[line 220]
Stores wether the doctype definition should include to the document or not.
$leftmargin = 0
[line 132]
Stores the value of the leftmargin-attribute of the body-tag.
$marginheight = 0
[line 150]
Stores the value of the marginheight-attribute of the body-tag.
$marginwidth = 0
[line 144]
Stores the value of the marginwidth-attribute of the body-tag.
$meta =
[line 73]
Tags:
$mode = HTML_STANDARD_MODE
[line 106]
Class variable to switch the mode of the document between quirk and standard.
$noformat = false
[line 231]
Stores whether the document should be formatted by the PlainTextFormatter or not.
Tags:
$onblur =
[line 164]
Stores the javascript order that should execute when the browser leaves the document.
var string $onblur
$onload =
[line 157]
Stores the javascript order that should execute when the browser loads the document.
$onresize =
[line 178]
Stores the javascript order that should execute when the document will be resized.
var string $onresize
$onscroll =
[line 171]
Stores the javascript order that should execute when the document will be scrolled.
var string $onscroll
$text =
[line 119]
Stores the value of the text-attribute of the body-tag.
$title =
[line 80]
The title of this document.
Tags:
$topmargin = 0
[line 138]
Stores the value of the topmargin-attribute of the body-tag.
$version = 4.01
[line 191]
Standard is 4.01.
constructor HTMLDocument [line 252]
HTMLDocument HTMLDocument(
[$title
$title = ""], [$head
$head = ""], [$body
$body = ""], [$behindbody
$behindbody = ""], [$meta_char
$meta_char = "ISO-8859-1"])
|
|
Constructor.
Tags:
Parameters:
method get [line 865]
Returns a generated string based on the attributes of this HTML-Object.
Tags:
method getBackground [line 744]
Returns the body's background-attribute of this document.
Tags:
method getBGColor [line 618]
Returns the current body's bgcolor-attribute of this document.
Tags:
method getBody [line 576]
Returns the current body's content of this document.
Tags:
method getHead [line 562]
Returns the current head's content of this document.
Tags:
method getLeftMargin [line 632]
Returns the current body's leftmargin-attribute of this document.
Tags:
method getMarginHeight [line 674]
string getMarginHeight(
)
|
|
Returns the current body's marginheight text-attribute of this document.
Tags:
method getMarginWidth [line 660]
Returns the current body's marginwidth-attribute of this document.
Tags:
method getMode [line 590]
Returns the current document's mode (standard or quirk).
Tags:
method getOnBlur [line 702]
Returns the body's onblur-attribute of this document.
Tags:
method getOnLoad [line 688]
Returns the current body's onload-attribute of this document.
Tags:
method getOnResize [line 730]
Returns the body's onresize-attribute of this document.
Tags:
method getOnScroll [line 716]
Returns the body's onscroll-attribute of this document.
Tags:
method getPHPSource [line 787]
Generates the sourcecode to build this object and returns it.
Tags:
method getText [line 604]
Returns the current body's text-attribute of this document.
Tags:
method getTitle [line 548]
Returns the current title of this document.
Tags:
method getTopMargin [line 646]
Returns the current body's topmargin-attribute of this document.
Tags:
method setBackground [line 516]
void setBackground(
string
$string)
|
|
Sets the body's background-attribute of this document.
Tags:
Parameters:
method setBGColor [line 372]
void setBGColor(
string
$string)
|
|
Sets the body's bgcolor-attribute of this document.
Tags:
Parameters:
method setBody [line 312]
void setBody(
string
$string)
|
|
Sets the body's content of this document.
Tags:
Parameters:
method setHead [line 296]
void setHead(
string
$string)
|
|
Sets the head of this document.
Tags:
Parameters:
method setLeftMargin [line 388]
void setLeftMargin(
string
$string)
|
|
Sets the body's leftmargin-attribute of this document.
Tags:
Parameters:
method setMarginHeight [line 436]
void setMarginHeight(
string
$string)
|
|
Sets the body's marginheight-attribute of this document.
Tags:
Parameters:
method setMarginWidth [line 420]
void setMarginWidth(
string
$string)
|
|
Sets the body's marginwidth-attribute of this document.
Tags:
Parameters:
method setMode [line 330]
void setMode(
[integer
$int = HTML_QUIRK_MODE])
|
|
Sets the mode of this document to quirk or standard. Preselect on method call with no entered parameter is the quirk mode, because preselect of the class-initiation is the standard mode.
Tags:
Parameters:
method setNoFormat [line 534]
void setNoFormat(
[boolean
$boolean = true])
|
|
Sets the behaviour of body's formatting. If noformat is set to true then the body will not be formatted by the plaintextformatter. Look at package CLASSPATH."core" at the class PlainTextFormatter for further information.
Tags:
Overrides
ABSTHTMLTag::setNoFormat() (Stores that the HTML-elements should not format by "\r\n" in the source.)
Parameters:
method setOnBlur [line 468]
void setOnBlur(
string
$string)
|
|
Sets the body's onblur-attribute of this document.
Tags:
Overrides
ABSTHTMLTag::setOnBlur() (Sets the value of the blur-attribute of this html-tag.)
Parameters:
method setOnLoad [line 452]
void setOnLoad(
string
$string)
|
|
Sets the body's onload-attribute of this document.
Tags:
Parameters:
method setOnResize [line 500]
void setOnResize(
string
$string)
|
|
Sets the body's onresize-attribute of this document.
Tags:
Parameters:
method setOnScroll [line 484]
void setOnScroll(
string
$string)
|
|
Sets the body's onscroll-attribute of this document.
Tags:
Parameters:
method setText [line 356]
void setText(
string
$string)
|
|
Sets the body's text-attribute of this document.
Tags:
Parameters:
method setTitle [line 280]
void setTitle(
string
$string)
|
|
Sets the title of this document.
Tags:
Parameters:
method setTopMargin [line 404]
void setTopMargin(
string
$string)
|
|
Sets the body's topmargin-attribute of this document.
Tags:
Parameters: