API15:JDocumentHTML
From Joomla! Documentation
(Difference between revisions)
(New page: <span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
</span>
{{Description:JDocumentHTML}}
===Defined ...) |
|||
| Line 45: | Line 45: | ||
|Count the number of child menu items | |Count the number of child menu items | ||
|} | |} | ||
| + | |||
===Importing=== | ===Importing=== | ||
<source lang="php">jimport( 'joomla.document.html.html' );</source> | <source lang="php">jimport( 'joomla.document.html.html' );</source> | ||
Latest revision as of 12:33, 25 March 2010
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
[Edit Descripton]
This class defines a web page document. Note that templates are executed within the scope of this object, so $this in a template is an object of type JDocumentHTML.
Contents |
[edit] Defined in
libraries/joomla/document/html/html.php
[edit] Methods
| Method name | Description |
|---|---|
| __construct | Class constructor |
| getHeadData | Get the html document head data |
| setHeadData | Set the html document head data |
| addHeadLink | Adds <link> tags to the head of the document |
| addFavicon | Adds a shortcut icon (favicon) |
| addCustomTag | Adds a custom html string to the head block |
| getBuffer | Get the contents of a document include |
| setBuffer | Set the contents a document include |
| render | Outputs the template to the browser. |
| countModules | Count the modules based on the given condition |
| countMenuChildren | Count the number of child menu items |
[edit] Importing
jimport( 'joomla.document.html.html' );
[Edit See Also] SeeAlso:JDocumentHTML
[edit] Examples
<CodeExamplesForm />
