Inheritance diagram for HTMLCreator:
The HTML produced can be included over http by scripting languages, or serve as the source for an IFrame. All output by this class is embedded in
tags to enable formatting using CSS.
Definition at line 1322 of file feedcreator.class.php.
Public Member Functions | |
createFeed () | |
Writes the HTML. | |
_generateFilename () | |
Overrrides parent to produce .html extensions. | |
Public Attributes | |
$contentType = "text/html" | |
This feed's MIME content type. | |
$header | |
Contains HTML to be output at the start of the feed's html representation. | |
$footer | |
Contains HTML to be output at the end of the feed's html representation. | |
$separator | |
Contains HTML to be output between entries. | |
$stylePrefix | |
Used to prefix the stylenames to make sure they are unique and do not clash with stylenames on the users' page. | |
$openInNewWindow = true | |
Determines whether the links open in a new window or not. | |
$imageAlign = "right" | |
$stylelessOutput = "" | |
In case of very simple output you may want to get rid of the style tags, hence this variable. |
|
Overrrides parent to produce .html extensions.
Reimplemented from FeedCreator. Reimplemented in JSCreator. Definition at line 1455 of file feedcreator.class.php. |
|
Writes the HTML.
Reimplemented from FeedCreator. Reimplemented in JSCreator. Definition at line 1368 of file feedcreator.class.php. References HtmlDescribable::getDescription(), and FeedCreator::iTrunc(). |
|
This feed's MIME content type.
Reimplemented from FeedCreator. Reimplemented in JSCreator. Definition at line 1324 of file feedcreator.class.php. |
|
Contains HTML to be output at the end of the feed's html representation.
Definition at line 1334 of file feedcreator.class.php. |
|
Contains HTML to be output at the start of the feed's html representation.
Definition at line 1329 of file feedcreator.class.php. |
|
Definition at line 1353 of file feedcreator.class.php. |
|
Determines whether the links open in a new window or not.
Definition at line 1351 of file feedcreator.class.php. |
|
Contains HTML to be output between entries. A separator is only used in case of multiple entries. Definition at line 1340 of file feedcreator.class.php. |
|
In case of very simple output you may want to get rid of the style tags, hence this variable. There's no equivalent on item level, but of course you can add strings to it while iterating over the items ($this->stylelessOutput .= ...) and when it is non-empty, ONLY the styleless output is printed, the rest is ignored in the function createFeed(). Definition at line 1362 of file feedcreator.class.php. |
|
Used to prefix the stylenames to make sure they are unique and do not clash with stylenames on the users' page.
Definition at line 1346 of file feedcreator.class.php. |